Written by Allen Wyatt (last updated January 13, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365
Makik has a list of numeric values. Some are integers; some have digits to the right of the decimal. He would like to use conditional formatting to highlight those values that have digits to the right of the decimal point.
There are many ways that this can be done, and several different approaches. I won't go into how to define a conditional format here; such information has already been covered in other issues of ExcelTips. Instead, I'll focus on the condition itself and how you should select the condition to test.
If you know that the list will only contain numeric values, then you could use any number of formulas to determine whether the value is a non-integer. These are just a few that can be used if you specify that the condition contains a formula:
=MOD(A1,1)>0 =A1<>INT(A1) =A1-INT(A1)>0 =NOT(A1=INT(A1)) =(A1-TRUNC(A1))>0 =ABS(A1)-INT(ABS(A1))>0 =IF(FIND(".",A1),1,0) =(A1-(ROUNDDOWN(A1,0))>0)
The various formulas (and there could be many more listed) basically check to see if the unaltered value in the cell is equal to a version that makes sure there is nothing to the right of the decimal.
If you prefer (for some reason) to not rely upon a formula to define your condition, then you can choose "cell value is greater than" and set the condition as ROUNDDOWN(A1,0). You could also use "not equal to" in the condition and you could change ROUNDDOWN to ROUNDUP. Either way, you are testing to determine whether a rounded version of the number (rounded to the nearest integer) is equal to the original value or not.
You should note that if any integer value in your list is formatted with decimal places, then such a value won't be "caught" by these conditional formats. For instance, if a cell contains the value 41 but the cell is formatted to display the value as 41.00, that value won't be "marked" by the conditional format as having something to the right of the decimal point. The reason is that the value really is an integer; it is just the display that adds the decimal point and two zeros.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8484) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Conditionally Formatting Non-Integers.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!
When you apply conditional formatting, you are not limited to using a single condition. Indeed, you can set up multiple ...
Discover MoreConditional formatting can be easily set up to check data on the current worksheet. If you want to check data on the ...
Discover MoreIt is easy to apply conditional formatting to a cell. What if you want an entire row to be formatted, however, based on ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments