S Sed Registered User. Local time Today, 15:03 Joined Oct 16, 2008 Messages 111 Nov 6, 2008 #1 Anybody knows how to convert an # error formula to return "0" Here's my formula: CWT: ([LineHaul]/[Cost/Lbs])/100 #error because it's dividing by 0, but I can't convert it to return zero please help
Anybody knows how to convert an # error formula to return "0" Here's my formula: CWT: ([LineHaul]/[Cost/Lbs])/100 #error because it's dividing by 0, but I can't convert it to return zero please help
boblarson Smeghead Local time Today, 15:03 Joined Jan 12, 2001 Messages 32,059 Nov 6, 2008 #2 CWT: IIf([Cost/Lbs]=0,0,([LineHaul]/[Cost/Lbs])/100)
S Sed Registered User. Local time Today, 15:03 Joined Oct 16, 2008 Messages 111 Nov 6, 2008 #3 You are the MAN!!!! thank you Boblarson!!!