I have written the following IIF statement:
IIf([Wins]/([Wins]+[Losses])=0,0,([Wins]/([Wins]+[Losses])))
The reason I wrote it this way because I have fields that would give me a 0/0 scenario. I'd like to account for this and return a 0 in that instance. Is there a way to do this or am I doomed to get the #error?
IIf([Wins]/([Wins]+[Losses])=0,0,([Wins]/([Wins]+[Losses])))
The reason I wrote it this way because I have fields that would give me a 0/0 scenario. I'd like to account for this and return a 0 in that instance. Is there a way to do this or am I doomed to get the #error?