Simplest Condition Format Problem!

kpark91

Well-known Member
Joined
Jul 15, 2010
Messages
1,582
Hi,

How can I fill cells red, which are referring to blank cells?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
So if A1 is blank
and in B1 I have = A1 (in B1, it's going to appear 0)

How do I fill B1 as red? (there might be 0 value inputted in A1 tho!)
 
Upvote 0
2 options:
=A1=""
or
=LEN(A1)=0

EDIT: didn't see your 2nd post. If A1 contains 0 then it's not blank. Try one of:
=OR(A1="",A1=0)
or
=or(LEN(A1)=0,A1=0)
 
Upvote 0
Try this

Excel Workbook
A
111
2
3w
Sheet2
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A11. / Formula is =ISBLANK(A1)Abc
 
Upvote 0
Thank you for the answers :D

It does what it does half the time.

Perhaps, I have not explained enough.

I have two worksheets (Sheet1 and Sheet2)

Sheet2 cells are purely referring to Sheet1 containing many values (including 0)
Sheet2 refers to Sheet1 cells correctly but when cell in Sheet1 is blank,
in Sheet2 it says 0 instead of a blank cell.


I want to indicate on Sheet2 that the cell it's referring to in Sheet1 is blank :)

Thank you so much for your answers
but a little more then it would be perfect.

Many thanks :)
 
Upvote 0
The only way you're gonna do this is with a helper column, using the ISBLANK formula that Peter posted. You can then use Conditional Formatting to test whether ISBLANK is returning TRUE or FALSE>
 
Upvote 0
You are, but it is courtesy to tell people you have done so by providing links. In some forums, you would get your post blocked, but we're a little more lenient here! :)
 
Upvote 0
You are, but it is courtesy to tell people you have done so by providing links. In some forums, you would get your post blocked, but we're a little more lenient here! :)

Oops! I'm sorry for the cross-post :(

I was just too eagered/selfish for a solution that I hadn't realized I've done disrepspectful thing.
I really didn't mean anything by it.

I shall give links if I cross-post again :)
 
Upvote 0

Forum statistics

Threads
1,216,105
Messages
6,128,859
Members
449,472
Latest member
ebc9

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top