T
Ted
Hi all, I could really use some help here. I'm trying to run a query to pull
the last commission used by all of our brokers. I know this isn't that
complicated but i'm having a major brain fart this morning.
I have a table ALLCOMANIESDATA, trying to pull BRK and BRK% using POSTDATE
but its not working bc I'm using a Group By query and its grouping by BRK%
so I'm getting too many records:
SELECT BRK, [BRK%], Last(ALLCOMPANIESDATA.POSTDATE) AS LastOfPOSTDATE FROM
ALLCOMPANIESDATA GROUP BY BRK,[BRK%];
Any ideas. I feel like this should have taken 5 minutes not an hour of
staring at my screen. lol
TIA
Ted
the last commission used by all of our brokers. I know this isn't that
complicated but i'm having a major brain fart this morning.
I have a table ALLCOMANIESDATA, trying to pull BRK and BRK% using POSTDATE
but its not working bc I'm using a Group By query and its grouping by BRK%
so I'm getting too many records:
SELECT BRK, [BRK%], Last(ALLCOMPANIESDATA.POSTDATE) AS LastOfPOSTDATE FROM
ALLCOMPANIESDATA GROUP BY BRK,[BRK%];
Any ideas. I feel like this should have taken 5 minutes not an hour of
staring at my screen. lol
TIA
Ted