Jump to content

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

Recommended Posts

  • Newbies
Posted

I can't get this calc to display results. The field "size" is calculated as:

If(gender = "women" & product = "longsleeve" , "sm, md, lg", "" or If(gender = "women" & product = "shortsleeve" , "xs, sm, md, lg, xl", ""))

Its Calculation result is "text", not calculated if empty, not stored. Gender and Product are popup fields supported by a value list.

But when I enter a selectioin in them, there are no data in the size field.

I must be doing somethng very simple that is wrong. Advice please?

Posted

There are a couple of problems. You're mixing up the concatenation operator "&" with the logical operator "and" for one thing. This should do it;

Case(

gender = "women" AND product = "longsleeve" , "sm, md, lg",

gender = "women" AND product = "shortsleeve" , "xs, sm, md, lg, xl"

)

Some problems with your original statement:

If( gender = "women" & product = "longsleeve"

evaluates as follows for women, lonsgleeve:

if (gender = "women1", "sm, md, lg", "" or If(gender = "women0" , "xs, sm, md, lg, xl", ""))

Which boils down to:

if (gender = "women1", "sm, md, lg", "" or "")

This topic is 7488 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.