Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi,
I am making a covid dashboard, I have calculated and segregated data based on their covid status like Cases, Deaths and Recoved,
I have calculated measures using dax like sum of total cases, and change in cases: (new cases - previous cases) based on Date.
now that have calculated the differnce but it isn't accumulated. I might be missing something really small but it has been bugging me for last 4 days. little help needed. thx 🙂
Relationship Model:
Solved! Go to Solution.
Try this:
NewMeasure= SUMX(VALUES (Table[Date]), New Cases)
Mark this as a solution if I answered your question.
Thanks
@fahadkhan This looks like a measure aggregation problem. See my blog article about that here: https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
The pattern is:
MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
etc.
Hi @Tanushree_Kapse ,
Expected Result based on screenshot would be :
18,895,780
I want calculate sum of all values in the measured column.
Try this:
NewMeasure= SUMX(VALUES (Table[Date]), New Cases)
Mark this as a solution if I answered your question.
Thanks
Thank you so much! it works!
Great!!
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.