Return blank cell if no value found

redspanna

Well-known Member
Joined
Jul 27, 2005
Messages
1,602
Office Version
  1. 365
Platform
  1. Windows
Hi all

Cell Formulas
RangeFormula
A4A4=EOMONTH(TODAY(),-1)+1
D6:D21,I6:I21D6=SUMIFS(Data!$F$2:$F$8000,Data!$A$2:$A$8000,DATE(YEAR(TODAY()),MONTH(TODAY()),C6))
E6:E21E6=D6-Pivots!F2
J6:J21J6=I6-Pivots!F18
F12F12=IF(A10="","",IF(MONTH(A10+1)<>MONTH(A10),"",A10))
B6B6=IF($A$4="","",IF(MONTH($A$4+1)<>MONTH($A$4),"",$A$4))
B7:B21,G7:G21B7=IF(B6="","",IF(MONTH(B6+1)<>MONTH(B6),"",B6+1))
G6G6=IF(B21="","",IF(MONTH(B21+1)<>MONTH(B21),"",B21+1))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
J6:J21Other TypeIcon setNO
E6:E21Other TypeIcon setNO


So with above example data, how can I change the formula in thru column I so that if the formula thru column G returns a BLANK value, then the value in column I is also BLANK
At the moment as you can see if any value in column G is BLANK a zero (0) is shown in column I - I'd like this to be blank

Thanks in advance
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
How about
Excel Formula:
=IF(G6="","",SUMIFS(Data!$F$2:$F$8000,Data!$A$2:$A$8000,DATE(YEAR(TODAY()),MONTH(TODAY()),H6)))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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