Here is the code I am trying to save but keep getting errors. Any ideas?
IF(OR({Do you have all the Information needed}=“No”,{Do you have all the Material you need}=“No”),CONCATENATE({My Name},“Can’t perform”{Production Goal for the day/Week:})
Here is the code I am trying to save but keep getting errors. Any ideas?
IF(OR({Do you have all the Information needed}=“No”,{Do you have all the Material you need}=“No”),CONCATENATE({My Name},“Can’t perform”{Production Goal for the day/Week:})
Best answer by Justin_Barrett
You’re missing a comma after “Can’t perform”, and a closing parenthesis for the IF function.
A couple more tips:
In your case these tweaks would look like this:
IF(
OR(
{Do you have all the Information needed}="No",
{Do you have all the Material you need}="No"
),
{My Name} & " can’t perform " & {Production Goal for the day/Week:}
)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.