A A|ex Registered User. Local time Today, 21:33 Joined Jul 11, 2004 Messages 90 Jul 25, 2004 #1 Is there a way to hide #Div/0! error when no data has been entered for the calc to work out? i rather just have nothing appear and then a figure when numbers are entered.
Is there a way to hide #Div/0! error when no data has been entered for the calc to work out? i rather just have nothing appear and then a figure when numbers are entered.
A A|ex Registered User. Local time Today, 21:33 Joined Jul 11, 2004 Messages 90 Jul 25, 2004 #3 doesnt work still displaying same error :/
A A|ex Registered User. Local time Today, 21:33 Joined Jul 11, 2004 Messages 90 Jul 25, 2004 #4 =IIf([priceBoxDifference1]=0,"0%",[priceBoxDifference1]/[NettValue]) Figured it out so it now displays 0%
=IIf([priceBoxDifference1]=0,"0%",[priceBoxDifference1]/[NettValue]) Figured it out so it now displays 0%
P Pat Hartman Super Moderator Staff member Local time Today, 16:33 Joined Feb 19, 2002 Messages 47,029 Jul 25, 2004 #5 Set the format to percent, don't put a string in a numeric field: =IIf([priceBoxDifference1]=0, 0,[priceBoxDifference1]/[NettValue])
Set the format to percent, don't put a string in a numeric field: =IIf([priceBoxDifference1]=0, 0,[priceBoxDifference1]/[NettValue])