Forum Discussion
IF Function #SPILL! help
- Mar 31, 2020
Yes, the formula has some assumptions which better to avoid even for Excel 2013. For the modern Excel that causes an error. More correct formula will be
=IF([@[Paid_Type]]="Paid in Full", [@Amount],[@Amount]*$D$3)
In brief, [Amount] returns entire column, [@Amount] returns the value from that column for the current row. 2013 returns the latest as well doing some silent work, but better to avoid such assumptions.
Yes, the formula has some assumptions which better to avoid even for Excel 2013. For the modern Excel that causes an error. More correct formula will be
=IF([@[Paid_Type]]="Paid in Full", [@Amount],[@Amount]*$D$3)
In brief, [Amount] returns entire column, [@Amount] returns the value from that column for the current row. 2013 returns the latest as well doing some silent work, but better to avoid such assumptions.
- brandydownsMar 31, 2020Copper Contributor
SergeiBaklan Thank you so much! This worked perfectly!
- SergeiBaklanMar 31, 2020Diamond Contributor
brandydowns , you are welcome, glad to help