I am trying to calculate a yes or no answer for a field using the formula below.
if((string-length(${inbox_flag})=5,"yes" and string-length(${leak_tagno})>0,"yes"), 'yes', 'no')
I keep receiving invalid result and have been banging my head against the wall all afternoon. What am I doing wrong?
Thanks,
--gary
Solved! Go to Solution.
Hi Gary,
This worked for me:
if((string-length(${inbox_flag})=5 and string-length(${leak_tagno}) > 0), 'yes', 'no')
You had extra "yes" statements in there that weren't needed. Hope it makes sense!
Hi Gary,
This worked for me:
if((string-length(${inbox_flag})=5 and string-length(${leak_tagno}) > 0), 'yes', 'no')
You had extra "yes" statements in there that weren't needed. Hope it makes sense!
Good Morning Katherine,
Wondered if you would give this a quick look.
The name columns Two09 and Two09Calc. It currently has this for the calculation:
if((${FinalFireAcreQuantity}>=300 and $NumberFatalities} >=1), 'Yes','No')
If statement is true, then Two09 = Yes, if not Two09 = No.
Christopher
That worked.
Thanks!!
--gary