sam__gleeson
Board Regular
- Joined
- Oct 11, 2012
- Messages
- 102
Hi
I have this formula for calculating %
It gives a #DIV/0! if a 0 in D25 so I used the following formula but it does not display a 0 if there is a error in the cell D25
D25 = Time in minutes
D$19 = 8 hours
Thanks
I have this formula for calculating %
Code:
=D25/(D$19*60)*100
Code:
=IFERROR(D25/(D$19*60)*100,"0")
D$19 = 8 hours
Thanks