This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi,
I am tring to create a calculated column called 'IsMax' which will flag the rows from the max month per ID. There may be more than one row per ID that relates to the max month.
Below is a sample of what I am trying to achieve:
| ID | Month | IsMax |
| A | Jan-21 | 1 |
| A | Jan-21 | 1 |
| A | Dec-20 | |
| A | Dec-20 | |
| A | Dec-20 | |
| B | Feb-21 | 1 |
| B | Feb-21 | 1 |
| B | Dec-20 | |
| B | Dec-20 | |
| C | Nov-20 | |
| C | Dec-20 | 1 |
| C | Dec-20 | 1 |
| C | Dec-20 | 1 |
Any help is appreciated.
Solved! Go to Solution.
Hi gclements,
Could you check if this calculated column does the trick for you? For every Month record it will check whether the value is equal to the max month value of the associated ID.
MaxDatePerID =
IF (
TestTable[Month]
= CALCULATE (
MAX ( TestTable[Month] ),
FILTER ( TestTable, TestTable[ID] = EARLIER ( TestTable[ID] ) )
),
1,
0
)
Hope it helps!
Regards,
Tim
Proud to be a Super User!
Hi gclements,
Could you check if this calculated column does the trick for you? For every Month record it will check whether the value is equal to the max month value of the associated ID.
MaxDatePerID =
IF (
TestTable[Month]
= CALCULATE (
MAX ( TestTable[Month] ),
FILTER ( TestTable, TestTable[ID] = EARLIER ( TestTable[ID] ) )
),
1,
0
)
Hope it helps!
Regards,
Tim
Proud to be a Super User!
Thanks for the solution. I have now realised that I have asked the wrong question as this will not resolve what I am trying to do. Nevertheless this is the answer to my question so I will mark it as so and ask another question in another post.
Hi @gclements
What's the logic behind which month is the Max?
For A you have flagged Jan, but for C you have flagged Dec?
Regards
Phil
Proud to be a Super User!
It is to identify the maxium month value for each group. So for group A the maxium month is Jan-21, therefore all rows for Jan-21 are flagged, for group B it is Feb-21...etc.
Your initial post had Dec21 in row 3 but I see that has now been corrected. So the logic is clear now. having Jan21 as the max didn't make sense with Dec21 in there.
Phil
Proud to be a Super User!
Yes sorry, I noticed there was a slight mistake in one of the months.
Just to be a bit clearer, I am trying to calculate the 'IsMax' column.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 63 | |
| 53 | |
| 31 | |
| 23 | |
| 23 |