J
Julie
I have a query with fields Q1, Q2, Q3, Q4. I want to collapse the answers
for questions 1-4 into either 1 or 0. So, I am using Iif....
Q1KR: IIf([Q1]<4,"0","1")
Q2KR: IIf([Q2]<4,"0","1")
Q3KR: IIf([Q3]<4,"0","1")
Q4KR: IIf([Q4]<4,"0","1")
Then I want to create a new field that totals those...
Total: [Q1KR]+[Q2KR]+[Q3KR]+[Q4KR]
Instead of 3, I'm getting 1 0 1 1
What is going on?
Incidently if I change the total to: [Q1]+[Q2KR]+[Q3KR]+[Q4KR], it sums
just fine.
for questions 1-4 into either 1 or 0. So, I am using Iif....
Q1KR: IIf([Q1]<4,"0","1")
Q2KR: IIf([Q2]<4,"0","1")
Q3KR: IIf([Q3]<4,"0","1")
Q4KR: IIf([Q4]<4,"0","1")
Then I want to create a new field that totals those...
Total: [Q1KR]+[Q2KR]+[Q3KR]+[Q4KR]
Instead of 3, I'm getting 1 0 1 1
What is going on?
Incidently if I change the total to: [Q1]+[Q2KR]+[Q3KR]+[Q4KR], it sums
just fine.