pbucc Posted December 10, 2001 Posted December 10, 2001 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" ) )
The Bridge Posted December 10, 2001 Posted December 10, 2001 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")
LeCates Posted December 10, 2001 Posted December 10, 2001 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" ) )
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now