Subscribe for Weekly Tutorials
BONUS: subscribe now to download our Top Tutorials Ebook!
MOD Function in Excel
The MOD function is very simple but it can be used to do wonderful things in Excel.
It returns the remainder after you divide one number by another.
Syntax
=MOD(number, divisor)
Argument | Description |
---|---|
Number | The number that will be divided by another number. |
Divisor |
The number by which the first number will be divided. |
Example - Simple
- Type =MOD(
- Type the first number or select a cell that contains that number.
- Type a comma and then type the second number, which is the number that we will use to divide the first one.
- Hit Enter and that's it!
You can see that the remainder of dividing 10 by 4 is 2.
Example - More Helpful
So far, this might not help you unless you are doing straight-up math in Excel. However, we can use it to check what row or column we are in and this can really help us to create more powerful and useful spreadsheets.
If we divide 5 by 2, there will be a remainder, but if we divide 5 by 5 or 1, there will be no remainder and it is when there is no remainder that we can use this function to determine intervals. It sounds confusing so just pay attention to the example.
Type =MOD(5,1)
Hit Enter and we get 0
Now, combine this with the ROW() function, which returns the number of the current row, and we can get intervals:
Type =MOD(ROW(),2)
Copy the formula down and we get this:
Using that pattern we can do everything from incrementing a value to automatically shading rows.
The MOD() function by itself is not so great, it is when we combine it with other functions that it shines.
Follow the links below for tutorials on more powerful things we can do in Excel with the help of the MOD() function.
Excel Tutorials that Use the MOD Function
Increment a Value Every X Number of Rows in Excel
Automatically Shade Every Other Row When You Add Data in Excel
Shade Every Other Row in Excel Quickly
Notes
The MOD function is best used in conjunction with other functions; using this as a building block allows you to create complex and useful formulas that will help you create better spreadsheets.
Make sure to download the attached sample file to see the MOD function in action.
Question? Ask it in our Excel Forum
Tutorial: Add values from every x number of rows in Excel. For instance, add together every other va...
Macro: Determine if a cell in Excel contains a formula or function with this UDF (user defined fu...
Tutorial: Full explanation of the Vlookup function in Excel, what it is, how to use it, and when yo...
Tutorial: In this tutorial I will cover the basic concepts of Formulas and Functions in Excel. A for...
Tutorial: In this tutorial I am going to show you how to easily input complex Functions in Excel. To...
Tutorial: The OFFSET function in Excel returns a cell or range reference that is a specified number...