Hi,
I have a table with Name, date, test score. I've been asked to determine the lowest score for each person, each each. I'm stuck trying to create the IIF statement in query based on this table. Below are some record examples
Employee1, 5/1/17, 90
Employee1, 5/10/17, 85
Employee1, 5/14/17, 82
Employee1, 5/24/17 73
Employee1, 6/1/17, 91
Employee1, 6/12/17, 83
Employee1, 6/18/17, 79
Employee1, 6/29/17 74
I basically need to create a expression that shows if that record is the lowest score for the person for that month like this:
Employee1, 5/1/17, 90, no
Employee1, 5/10/17, 85, no
Employee1, 5/14/17, 82, no
Employee1, 5/24/17 73, yes
Employee1, 6/1/17, 91, no
Employee1, 6/12/17, 83, no
Employee1, 6/18/17, 79, no
Employee1, 6/29/17 74, yes
Can someone please help? I'm at a complete loss
Thanks
I have a table with Name, date, test score. I've been asked to determine the lowest score for each person, each each. I'm stuck trying to create the IIF statement in query based on this table. Below are some record examples
Employee1, 5/1/17, 90
Employee1, 5/10/17, 85
Employee1, 5/14/17, 82
Employee1, 5/24/17 73
Employee1, 6/1/17, 91
Employee1, 6/12/17, 83
Employee1, 6/18/17, 79
Employee1, 6/29/17 74
I basically need to create a expression that shows if that record is the lowest score for the person for that month like this:
Employee1, 5/1/17, 90, no
Employee1, 5/10/17, 85, no
Employee1, 5/14/17, 82, no
Employee1, 5/24/17 73, yes
Employee1, 6/1/17, 91, no
Employee1, 6/12/17, 83, no
Employee1, 6/18/17, 79, no
Employee1, 6/29/17 74, yes
Can someone please help? I'm at a complete loss
Thanks