#Div/0! Error on No Data, Need to Hide This if no data. Thanks, Dave

  • Thread starter Thread starter Gulf Coast Electric
  • Start date Start date
G

Gulf Coast Electric

Text Box Formula in PerCent format. When there is no Data is show the above
error on form.
I need to Hide This. Thanks, Dave


=[text248]/[Text162]
 
Try

=IIF([Text162]>0,[text248]/[Text162],"")

Only when Text162 is valid, the percent will be shown, otherwise it shows
nothing. This will cover when Text162 is 0 too.

Kelvin
 
Gulf Coast Electric said:
Text Box Formula in PerCent format. When there is no Data is show the above
error on form.
I need to Hide This. Thanks, Dave


=[text248]/[Text162]

Try this:

=Iif(IsNull([Text162]),Null,[text248]/[Text162])

Best regards
Emilia

Emilia Maxim
PC-SoftwareService, Stuttgart
http://www.maxim-software-service.de
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Error Installing "ADAPTEC EZCD 4.04" 1
Sub-form shows #Error for no data - how can I hide this? 1
#DIV/0! 5
hide #div/0 2
HIDE #div/0 1
how to hide #DIV/0! 6
#DIV error 5
Supress DIV/0 2

Back
Top