Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi All,
I need to display 5 metrics in a report where 3 metrics are fixed for different years 2016,2017 & 2018, other two metrics are calculated based on users month selection. In current situation when I select month then my metrics calculated on year is also getting changed. Is there way to restrict that and apply month selection only for two metrics?
Thanks
Krishna
Hi Krishna,
Could you please mark the proper answers as solutions?
Best Regards,
Dale
You can also create an unrelated table which lists all available months. In this case, when you choose any value from this slicer, the objects won't be filtered by it. If you want the objects to be affected by the selction then you can specify it in the DAX formula using FILTER.
Selected_Months = SELECTEDVALUE ( Table[Months] ) Measure = CALCULATE ( SUM ( Table[value] ), FILTER ( Table, Table[Months] = [Selected_Months] ) )
Hey, @kthakur could you try doing an ALL/ALLSELECTED calculation?
i.e. 2016 Metic = CALCULATION(SUM(ALL(Metric Value)), (Metric Value Year = '2016'))
Month Metic = SUM(ALLSELECTED(Metric Value))
User | Count |
---|---|
116 | |
73 | |
60 | |
48 | |
48 |
User | Count |
---|---|
171 | |
122 | |
60 | |
59 | |
56 |