Excel Formula to show blank if another cell is blank but has a formula in it

lisa_swinton

New Member
Joined
Sep 2, 2022
Messages
15
Office Version
  1. 365
Platform
  1. Windows
I have a table the First column returns a value depending on other fields in the table
1695375897207.png

=IF(ISBLANK($E10)," ",IFS($U10>0,"Opportunity",AND(R10>=0,U10=0,X10>0),"Opportunity",U10="","",$U10<=0,"Threat"))

For the project Number column I'm trying to get the correct formula to return blank if the Risk Nature is blank but what I've done doesn't seem to be working
=IF(ISBLANK($D10),"",$E$4)

This must be really simple if someone can direct me to the solution I'd appreciate it
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
If the 1st formula is in D10 then it will never be "" as you are putting a space in it. Use
Excel Formula:
=IF($E10="","",IFS($U10>0,"Opportunity",AND(R10>=0,U10=0,X10>0),"Opportunity",U10="","",$U10<=0,"Threat"))
and then use the formula that Sanjay suggested.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,958
Members
449,096
Latest member
Anshu121

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