Hi,
What is the syntax for this in a calculated field?
equal($statusgeneral_c,"closed")
equal($status_c,"closed")
I have tryied this, with no success.
equal($statusgeneral_c,"closed")
and
equal($status_c,"closed")
Regards J
Hi,
What is the syntax for this in a calculated field?
equal($statusgeneral_c,"closed")
equal($status_c,"closed")
I have tryied this, with no success.
equal($statusgeneral_c,"closed")
and
equal($status_c,"closed")
Regards J
Hi JÖRGEN Hakefjäll ,
If I am understanding correctly, you want both equal conditions to be validated in a single field formula. If that is an accurate understanding, you need to wrap everything in an and() formula, so it would look like this:
and(
equal(
$statusgeneral_c,
"closed"
),
equal(
$status_c,
"closed"
)
)
Let me know if that helps!
Chris
Chris Raffle Thank you very much. This was exactly what I was looking for. Regards Jorgen