The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
Can the maximum value of the Y-axis of a small multiple be the maximum value of the values of the selected cells?
The Y axis does not change dynamically even if DAX below is set to the maximum value.
Solved! Go to Solution.
@Anonymous , Try like
maxvalue =
CALCULATE(MAXX(
Summarize(Fact, 'Category'[ctg], 'calendar'[YYYYMM] , "_1" ,CALCULATE(sum(Fact[value]))), [_1])
,ALLSELECTED('calendar'[YYYYMM])
)
@Anonymous , Try like
maxvalue =
CALCULATE(MAXX(
Summarize(Fact, 'Category'[ctg], 'calendar'[YYYYMM] , "_1" ,CALCULATE(sum(Fact[value]))), [_1])
,ALLSELECTED('calendar'[YYYYMM])
)