Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Understanding Anova in Excel
  • How to create Gauge Chart in Excel
  • Get column name from index in Excel Table
  • How to add Trendline to a chart in Excel
  • Move chart to a separate worksheet in Excel

References

  • Perform case-sensitive Lookup in Excel
  • Count rows with at least n matching values
  • How to get last row in mixed data with blanks in Excel
  • How to use Excel COLUMN Function
  • How to get address of last cell in range in Excel

Data Validations

  • Excel Data validation with conditional list
  • Excel Data validation allow weekday only
  • Excel Data validation number multiple 100
  • Excel Data validation don’t exceed total
  • Data validation must not exist in list

Excel Data validation number multiple 100

by

Accept only numbers that are multiple of 100

To allow only numbers in multiples of 100, you can use data validation with a custom formula based on the MOD function.

Formula

=MOD(A1,100)=0

Note: Cell references in data validation formulas are relative to the upper left cell in the range selected when the validation rule is defined, in this case C5.

Explanation

In the example shown, the data validation applied to C5:C10 is:

=MOD(C5,100)=0

How this formula works

Data validation rules are triggered when a user adds or changes a cell value. When a custom formula returns TRUE, validation passes and the input is accepted. When the formula returns FALSE, validation fails and the input is rejected.

In this case, the MOD function is used to perform a modulo operation, which returns the remainder after division. The formula used to validate input is:

=MOD(C5,100)=0

The value in C5 is 500. The MOD function divides 500 by 100 and gets 5, with a remainder of zero. Since 0 = 0,  The rule returns TRUE and the data validation passes:

=MOD(500,100)=0
=0=0
=TRUE

If a user enters, say, 550, the remainder is 50, and validation fails:

=MOD(C5,100)=0
=MOD(550,100)=0
=50=0
=FALSE

Post navigation

Previous Post:

COSH function: Description, Usage, Syntax, Examples and Explanation

Next Post:

Excel Data validation require unique number

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • Extract multiple matches into separate rows in Excel
  • XOR function: Description, Usage, Syntax, Examples and Explanation
  • Nested IF function example in Excel
  • SWITCH function example in Excel
  • How to use Excel NOT Function

Date Time

  • SECOND function: Description, Usage, Syntax, Examples and Explanation
  • Pad week numbers with zeros in Excel
  • How to get same date next year or previous year in Excel
  • How to enter Today’s Date or Static Date and Time in Excel
  • HOUR function: Description, Usage, Syntax, Examples and Explanation

Grouping

  • Group times into unequal buckets in Excel
  • Categorize text with keywords in Excel
  • If cell contains one of many things in Excel
  • Map text to numbers in Excel
  • Group times into 3 hour buckets in Excel

General

  • How to fill cell ranges with random text values in Excel
  • Count cells that do not contain many strings in Excel
  • How to count total number of cells in a rectangular range in Excel
  • How to get Excel workbook path only
  • List sheet names with formula in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning