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.
Program Successfully in Excel! This guide will provide you with all the information you need to automate any task in Excel and save time and effort. Learn how to extend Excel's functionality with VBA to create solutions not possible with the standard features. Includes latest information for Excel 2024 and Microsoft 365. Check out Mastering Excel VBA Programming today!
Sometimes the hardest part of getting your conditional formatting rules to work properly is figuring out the proper way ...
Discover MoreIf you have conditional formatting applied in a worksheet, the formulas in those formats may not be as secure as you ...
Discover MoreIf you have a data table in a worksheet, and you want to shade various rows based on whatever is in the first column, ...
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