Forum Discussion
anil2
8 years agoFrequent Visitor
Create a measure based on existing measure
Is it possible to create a new measure based on existing measure?
I have a measure called "Utilization" that calculates ratio between two columns in the ssas model and I have subscription ID as column in the model. It is not possible to add my measure "Utilization" as visaul level fitler and select a condintion is greater than 90% in powerbi.
Now I would like to see distinct subscription ID's whose ratio is greater than 90% "Utilization".
Ca you suggest how it is feasible?
6 Replies
- SivaMani
Resident Rockstar
- v-yulgu-msft
Microsoft Employee
Hi anil2,
It is not possible to apply a visual level filter for card visual.
Now I would like to see distinct subscription ID's whose ratio is greater than 90% "Utilization".
You could create a measure similar to:
CountID = CALCULATE ( DISTINCTCOUNT ( tablename[subscriptionID] ), FILTER ( tablename, [Utilization] >= 0.9 ) )
Regards,
Yuliana Gu