Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello All,
I need you support to calculate the max value of a calculate table. In my model i need to create the calculated table as below:
the % is already calculated and is a measure. the month-year is a coulms in the calendar table.
recap of the table below:
MESE&ANNO='CALENDAR_SOSP'[MESE&ANNO]
%=PERCENTUALE
The result that i need is the max so
ago-20 = 92%
thank you very much for the answer
massimiliano
Hi @Anonymous ,
Try the measure as below:
maxvalues=MAXX(VALUES('Table'[MESE&ANNO]),%)
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
@Anonymous , if it is already a table then you can this measure along with MESE&ANNO
calculate(max(Table[MESE&ANNO]) , filter(allselected(Table), Table[%] =max(Table[%])))
thanks @amitchandak unfortunatelly is not a table, i think before use your formula i need to create a calculated table like this.
The % is already calcuted as measure but not for each months. should i create a calculated table with this info?
Hi @Anonymous ,
Is your issue solved?Does my suggestion work ?
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!