Forum Discussion
John Richards
Mar 27, 2018Copper Contributor
Help with replacing #DIV/0! error with text
Good morning all
I am currently working on a spreadsheet to show trends in relation to various incidents I deal with at work. I am looking to track changes in the number of incidents along with...
- Mar 27, 2018
John,
=IFERROR(IF(H4<>"",(H4-G4)/G4,""),"N/A")
or
=IF(G4=0,"N/A", IF(H4<>"",(H4-G4)/G4,""))
John Richards
Mar 27, 2018Copper Contributor
Hi Sergei, thank's for the quick response
sorry but I'm a complete beginner with excel. Could you show me how to change my current formula =IF(H4<>"",(H4-G4)/G4,"") to use =IFERROR as you have described as I keep getting errors such as 'too many arguments for this function.
thanks
SergeiBaklan
Mar 27, 2018MVP
John,
=IFERROR(IF(H4<>"",(H4-G4)/G4,""),"N/A")
or
=IF(G4=0,"N/A", IF(H4<>"",(H4-G4)/G4,""))
- John RichardsMar 27, 2018Copper Contributor
Sergei you are a genius. I have been trying to solve this for two days! Thank you very much for your help.