'Highlight cells that don't have number
Solution 1:[1]
This is what I have tried, and come up with,
• Formula used in cell B1
=MAX(IFERROR(FIND(CHAR(ROW($48:$57)),A1),""))>0
Basically this part FIND(CHAR(ROW($48:$57)),A1) check whether there is a number or not, if it finds it, then we can use either MAX() or MIN() or COUNT() function to get the respective values. And then using a Boolean to check whether TRUE or FALSE
Or, You may use the COUNT() Function as well,
• Formula used in cell E1
=COUNT(FIND(CHAR(ROW($48:$57)),A1))>0
Use any one of the above formulas in Conditional Formatting Rules --> Use a formula to determine which cells to format. Shall highlight the one has a number along with it.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Mayukh Bhattacharya |




