I'd like to display an empty box (HTML entity □ □ or any other similar box will do) in Excel in a cell if and only if another cell has a value.
I've tried =IF(ISBLANK(C8),,□), but that gives me an Invalid Name Error. Any help?
|
I'd like to display an empty box (HTML entity I've tried
| ||||
|
feedback
|
|
Check the syntax for the IF function. The second argument is the result if the first argument is true, the third argument is the result if the first argument is false.
So | |||
|
feedback
|
|
You must put quotes around your box:
The following ones also work:
| |||
|
feedback
|
|
Have you tried putting quotes around the box in your formula, such as =IF(ISBLANK(C8),,"□") ? It seems to work for me; good luck! | |||
|
feedback
|