Forum Discussion
bilingual
Helper V
5 years agoMAX DATE from One to Many relationsship
Hi i have some trouble making MAX DATE work. I have a sheet with a unique ID and a sheet with multiple IDs , where i need to latest date to show up per each unique ID in the unique sheet. I tried ...
- 5 years ago
Hi, bilingual
You can simply modify the column.
Like:
Column = MAXX(FILTER(Table1,[ID]=EARLIER(Table2[ID])&&[Type]="Flex"),[Date])Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-janeyg-msft
Community Support
5 years agoHi, bilingual
You can simply modify the column.
Like:
Column = MAXX(FILTER(Table1,[ID]=EARLIER(Table2[ID])&&[Type]="Flex"),[Date])
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
bilingual
Helper V
5 years agoThanks a lot, you helped me a lot!