Hello!
I was wondering if there is a forumla to make a field visible dependant on 2 other dropdown values?
Something like:
equal($field1,"Closed Lost" and $field2, "Why lost?")
This should be fairly easy but i cant make this work.
Hello!
I was wondering if there is a forumla to make a field visible dependant on 2 other dropdown values?
Something like:
equal($field1,"Closed Lost" and $field2, "Why lost?")
This should be fairly easy but i cant make this work.
Hi Andreas,
You're almost there, try the following structure:
and(equal($field1,"Closed Lost"), equal($field2, "Why lost?"))
Let me know if that worked.
Thanks,
Dennis
Hi Andreas,
You're almost there, try the following structure:
and(equal($field1,"Closed Lost"), equal($field2, "Why lost?"))
Let me know if that worked.
Thanks,
Dennis