Forum Discussion

62Mojo's avatar
62Mojo
Copper Contributor
Apr 19, 2023
Solved

Formula returning #value

Hello,   I have an error when trying to calculate a value if certain criteria is met. I'm using Excel 2016 (home/student).   The formula used for the calculation is =IF(SUM(G31:G32)>0,SUM(G31*0.5...
  • mtarler's avatar
    mtarler
    Apr 19, 2023
    I did open the file and G32 is not a number so you need to address that. Here is an alternative:
    =IF(SUM(G31:G32)>0,SUM(G31)*0.5+SUM(G32),"")
    in this case SUM is used to ignore blank/text. notice I also pulled *0.5 outside the SUM even though that wasn't the problem it could be

Resources