Hello,
Well so much for being done, if any one can help with the code below, would appreciate.
I am getting the #div/0 error again but elseware on the below code.
=IF(H9="", "", IF(H9="0", "0%", H18/H9))
Is there somthing I can add in here so when h18/h9 = 0 to show 0% instead of #div/0?
Last edited by devilchild99; 01-17-2012 at 01:49 PM.
Please read and adhere to these simple rules!
1. Use concise, accurate thread titles. Your post title should describe your problem, not your anticipated solution. Use terms appropriate to a Google search. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will be addressed according to the OP's experience in the forum: If you have less than 10 posts, expect (and respond to) a request to change your thread title. If you have 10 or more posts, expect your post to be locked, so you can start a new thread with an appropriate title.
To change the title of the thread, click EDIT on the original post, then click the Go Advanced button, then change the title. If two or more hours have passed, the EDIT button will not appear, and you need to ask a moderator to change the title.
"Relax. What is mind? No matter. What is matter? Never mind!"
"0" and 0 are not the same. "0" is text. 0 is a number. "0" <> 0
=IF(H9="", "", IF(H9=0, "0%", H18/H9))
This will also work:
=IF(H9<>0, H18/H9,"0%")
Thanks, that worked perfectly. *stamps star*
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks