Forum Discussion
ovetteabejuela
8 years agoImpactful Individual
Power Query | Get Max Date (2 Columns)
I'd like to capture (maybe in a different column) the max date(Week) under a single month(Month). I think I can manually upadte this kind of data but I am curious though as to how to actually do it v...
- Anonymous8 years ago
One way I could think of is to duplicate your original query, perform Group By transformation by Month with MAX aggregation on Week, then merge join the orginal query with the newly grouped query on Month column
Anonymous
8 years agoNot applicable
One way I could think of is to duplicate your original query, perform Group By transformation by Month with MAX aggregation on Week, then merge join the orginal query with the newly grouped query on Month column
ovetteabejuela
8 years agoImpactful Individual
I can't try that now but I see what you want me to do. I think that could be it! I'll let you know how it panned out after I try it.
- v-chuncz-msft8 years agoCommunity Support
By the way, SUMMARIZECOLUMNS Function, SUMMARIZE Function and GROUPBY Function could be used in DAX.