Home > other >  Make Iferror and Googlefinance print "blank" cell if no value
Make Iferror and Googlefinance print "blank" cell if no value

Time:10-27

Is there a way to make this formula print empty cells based on the "F" column having no value? I'm currently getting the cell to return "0" but I want it to be blank as I'm trying to combine this manual input with a supermetric query. The purpose is to calculate the Avg. for that column and push it to data studio, if "0" exists the avg is wrong.

Formula:

=IFERROR(F2*GOOGLEFINANCE("CURRENCY:SEKGBP"),"")

CodePudding user response:

try:

=IF(F2="",,IFERROR(F2*GOOGLEFINANCE("CURRENCY:SEKGBP")))
  • Related