Hello again... I have run into a small problem with this query: Access is interpreting the numbers incorrectly when it determines the "max" or the "min"
For example:
My table shows:
Name.....Item#........Billable
Bob.........433.......$1037.44
Bob..........674.......$641.57
Bob..........595.......$636.92
So Bob has had 3 different items. Each with a different price. I need my query that looks at this table to give me the maximum value for Bob's billable amount, which should be item 433 for $1037.44.
Instead, Access seems to think item #674 at $641.57 is highest.
So to do a test, in my query design grid, I changed "max" to "min" and the results showed the $1037.44 as being the minimum.
Clearly whats happening is Access is looking at each digit in the amount and determining what is high or low based off of the first digits on the left side and working to the right. Since "6" is the highest first digit, followed by the "4" and so on..... The "1" in $1,037.44 is the lowest first digit so thats why Access thinks that is the minimum.
How can I work around this?