Replace #Error

  • Thread starter Thread starter bollie
  • Start date Start date
B

bollie

Guest
I have a query where I make a calculation. In some cases this calculation results in a division by zero. The field will then show #Fout (#Error in english?). I want to replace this message with something else, like a dash for example.

Can someone tell me how?

Thanks.
 
Me too!

I'm also looking for the solution to that problem. Any luck?
 
Make a new field in your query with:

MYNewFieldName:IIf([YourDivisorField]=0,"-",[YourFieldToDivide]/[YourDivisorField])
 

Users who are viewing this thread

Back
Top Bottom