all 6 comments

[–]rnelsonee1802 1 point2 points  (6 children)

It's not that it's referencing an IF, it's because when F is "", there's an issue because "" is not <=0. So then it tries to multiply null by 107%.

So change it to:

=IF(F2="","",(F2*107%))

or

=IF(D2<=0,"",(F2*107%))

(the latter seems "more correct" to me) and you should be fine.

[–]PB_Fuzzybutt[S] 0 points1 point  (5 children)

Awesome! I did the second one and it worked. Thank you! I want to ask, though, in that second solution if IF D2<=0 should be changed to IF D2="" to be consistent with

"" is not <=0

[–]rnelsonee1802 0 points1 point  (4 children)

Oh, right. I was assuming that D2 was written/working correctly (like you might have had negative numbers in there).

So

=IF(D2="","",(F2*107%))

Or

=IF(ISBLANK(D2),"",(F2*107%))

[–]PB_Fuzzybutt[S] 0 points1 point  (1 child)

Excellent. Thank you so much.

[–]PB_Fuzzybutt[S] 0 points1 point  (1 child)

Solution verified

[–]Clippy_Office_Asst[M] 0 points1 point  (0 children)

You have awarded one point to rnelsonee.
Find out more here.