I am trying to take the max across a query record. I've tried to use Max in the Expression Builder of my query, only to find out that Max isn't a recognized function in this section, even though it is in other parts of Access (rage!). I might have possibly set up my database wrong, but now I'm stuck with it, and trying to work around it.
My query results look like this:
PART_NUMBER JAN14 FEB14 MAR14 APR14 1234567890 1000 2000 1000 2000 1234567891 2000 3500 4000 3000
I would like to get the max across each row:
PART_NUMBER MAX 1234567890 2000 1234567891 4000
I tried Max([JAN14],[FEB14],[MAR14],[APR14]) but that didn't work.
Any ideas?