If cell is empty then nothing

Hjemmet

Board Regular
Joined
Jun 20, 2018
Messages
207
Help i need a Formula for checking if 1 one or 2 cell's are Empty

the code i try is this

Code:
=IF(OR(L5="";L11=""))

and this code
Code:
=IF(L5="";OR(L11=""))

but they aint work

what i want is this solution
If no value in L5 nothing show in Cell "P11"
If no value in L11 nothing show in Cell "P11"

hope that was enough info
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
What do you want to show in P11 if there is data in both L5 and L11?
 
Upvote 0
Try this

=IF(OR(L5="";L11=""),"one cell is empty", "two full cells")
 
Upvote 0
Looks like you have a space between your quotation marks. Try deleting them.

Code:
=IF(OR(L5="";L11="");"")
 
Upvote 0
Sorry i missing that Part

i use it in "conditional formatting" when if "L5" or "L11" or both cell's where empty then "conditional formatting" Change the text color to White in celle "P11"
 
Upvote 0

Forum statistics

Threads
1,223,754
Messages
6,174,311
Members
452,554
Latest member
Louis1225

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