All,
Maybe this is a simple solution but i am getting frustrated in this formula.
I have this code working, but it needs to be the other way around.
If(
IsEmpty([DataCardValue13.Text]),
"Send to CL for re approval",
Or(
IsEmpty([DataCardValue14.Text]),
"Send to CL for re approval 2",
Or(
IsEmpty([DataCardValue15.Text]),
"Send to CL for re approval 3",
"Pending"
)
)
)
So instead of being blank or empty i want to have it with but the Isnotempty or Isnotblank does not exist.
If(
IsNotEmpty([DataCardValue13.Text]),
"Send to CL for re approval",
Or(
IsNotEmpty([DataCardValue14.Text]),
"Send to CL for re approval 2",
Or(
IsNotEmpty([DataCardValue15.Text]),
"Send to CL for re approval 3",
"Pending"
)
)
)
Any work arounds for this or simple solution.
So when a specific text field is not empty give me a specific text in another text field.