Forum Discussion
=FILTER and =MAX(FILTER issue
- Oct 30, 2024
I can't seem to get =GROUPBY to work, what I read about it is that it's not available to me OK but this doesn't tell us what exact version of Excel you run (2021, 2024 or 365). Don't forget next times please
In the meantime:
in E3:
=LET( unique_house, SORT( UNIQUE( Table1[House] ) ), max_date, MAXIFS( Table1[Date], Table1[House], unique_house ), CHOOSE( {1,2}, unique_house, max_date ) )
Like say "A" House's last entry was 11/10/2024 but "B" House's last entry was 11/15/2025 and "C" House's last entry was 12/21/2024? How would I populate those?
- LorenzoOct 28, 2024Silver Contributor
If you run 365 and already have it, easy with GROUPBY:
=GROUPBY( Table1[House], Table1[Date], MAX,, 0 )
or (with Headers):
=GROUPBY( Table1[[#All],[House]], Table1[[#All],[Date]], MAX, 3, 0 )
- millerseth528Oct 29, 2024Copper Contributor
I can't seem to get =GROUPBY to work, what I read about it is that it's not available to me
but yes, you get the idea of what I'm wanting to do. is there another way?
I apologize in advance for how simple this probably is for some people like yourself but I'm a new user, still learning.
- LorenzoOct 30, 2024Silver Contributor
I can't seem to get =GROUPBY to work, what I read about it is that it's not available to me OK but this doesn't tell us what exact version of Excel you run (2021, 2024 or 365). Don't forget next times please
In the meantime:
in E3:
=LET( unique_house, SORT( UNIQUE( Table1[House] ) ), max_date, MAXIFS( Table1[Date], Table1[House], unique_house ), CHOOSE( {1,2}, unique_house, max_date ) )