Forum Discussion
diego-jd
2 years agoFrequent Visitor
Aggregate measure by value
I am using the Usage Metrics Report dataset to create a Dashboard. There, I created the measure days_without_views, that calculates the days that have passed since the report was last seen with this ...
- Anonymous2 years ago
Hi diego-jd
You may create a new measure as below, which uses your current measure for each area
total = VAR vtable = SUMMARIZE ( 'ReportTable', 'ReportTable'[Report], 'ReportTable'[Area], "days", [days_without_views] ) RETURN SUMX ( vtable, [days] )Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
Anonymous
2 years agoNot applicable
Hi diego-jd
You may create a new measure as below, which uses your current measure for each area
total =
VAR vtable =
SUMMARIZE (
'ReportTable',
'ReportTable'[Report],
'ReportTable'[Area],
"days", [days_without_views]
)
RETURN
SUMX ( vtable, [days] )
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!