Jump to content

This topic is 922 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

So I have 3 text input Fields and 1 Status (Calculation) Field. 

I want the Status Field to calculate if: all the 3 text fields are empty it will output "Pending", if one or two text fields are not empty it will output "In Progress" and if all 3 text Fields are not Empty then will output "Completed".

How can I go about doing this? I tried a few Case and If statements and always end up only between "Pending" and "Completed" as a result and couldn't get the "In Progress" result.

A little light on this would really appreciate it. Thank you.

Posted

You did not tell us the names of the 3 input fields; here I will use InputA, InputB and InputC:

Let (
n = Count ( InputA ; InputB ; InputC )
;
Case (
n = 3 ; "Completed" ;
n > 0 ; "In Progress" ;
"Pending"
)
)

Make sure to uncheck the "Do not evaluate if all referenced fields are empty" option.

 

  • Like 1

This topic is 922 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.