S Susi Oct 1, 2008 #1 How can I get this formula to return a Rounded Down to an Whole Number? =IF(($I14-$A14)<0,IMABS($I14-$A14)*0.8,"") Thanks
How can I get this formula to return a Rounded Down to an Whole Number? =IF(($I14-$A14)<0,IMABS($I14-$A14)*0.8,"") Thanks
W WLMPilot Oct 1, 2008 #2 I believe this will work for you. =IF(($I14-$A14)<0,ROUNDDOWN(IMABS($I14-$A14)*0.8),"")) Les
S Susi Oct 1, 2008 #3 Thank you, I just had to add the zero at the end to round it down to 0 places and it worked! Susi =IF(($I14-$A14)<0,ROUNDDOWN(IMABS($I14-$A14)*0.8,0),"")
Thank you, I just had to add the zero at the end to round it down to 0 places and it worked! Susi =IF(($I14-$A14)<0,ROUNDDOWN(IMABS($I14-$A14)*0.8,0),"")