• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula

aparvez007

Member
Hi Ninjas,


i want formula which give 0% if any of one value is zero...


=IF(ISERROR(ROUND(D5/C5,2)*100 & "% " & IF(D5>C5,"▲", IF(D5=C5,"●","▼"))),0)


I use above formula but not working for both condition.


Example


A2 B2 C2

1200 0 0%▼

0 1200 0%▼


Thanks Nijas...
 
How's this?

=IF(OR(C5=0,D5=0),0&"%",ROUND(D5/C5,2)*100 & "% " & IF(D5>C5,"▲", IF(D5=C5,"●","▼")))
 
Back
Top