Jump to content

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

Recommended Posts

Posted

Hi there,

i have an Age field and i am trying to calculate the age field. i have never used the "<, >, <=, >=" before. now what i have works but anything over "45" doesn't work. what am i missing?

If(Age <= "25" , "25 and Under" , If( Age >= "26" or Age<= "45", "26 to 45" , "Older than 46" ) )

Posted

quote:

Originally posted by pbucc:

Hi there,

i have an Age field and i am trying to calculate the age field. i have never used the "<, >, <=, >=" before. now what i have works but anything over "45" doesn't work. what am i missing?

If(Age <= "25" , "25 and Under" , If( Age >= "26" or Age<= "45", "26 to 45" , "Older than 46" ) )

Change this to a Case() statement:

Case (Age<=25, "25 and under", Age<=45, "26 to 45", "46 or older")

Posted

Hi pbucc,

Just for clarification, the problem with your calculation is the "or". If you change this to "and" your calculation should work.

But the formula posted by The Bridge is probably simpler/better to use.

Good luck!

quote:

Originally posted by pbucc:

Hi there,

i have an Age field and i am trying to calculate the age field. i have never used the "<, >, <=, >=" before. now what i have works but anything over "45" doesn't work. what am i missing?

If(Age <= "25" , "25 and Under" , If( Age >= "26" or Age<= "45", "26 to 45" , "Older than 46" ) )

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