Forum Discussion
Anonymous
4 years agoNot applicable
Aggregate a Calculated Measures
Hello everyone. I have created a measure that does exactly what I need it to do which is show an image based on the number. Availiability KPI* = SUMX(ResourceTimephasedDataSet, ResourceTimephas...
- Anonymous4 years ago
I found my solution, took me 4 days to come up with this but I got it. I also had to do it for each case. I hope this will be able to help someone else in the future.
Availiable KPI Ok = COUNTX( DISTINCT(ResourceTimephasedDataSet[Resource ID]), IF(ResourceTimephasedDataSet[Availability KPI*] > -20 && ResourceTimephasedDataSet[Availability KPI*] <= 20, 1))
Ashish_Mathur
4 years agoSuper User
Hi,
You do not need the SUMX. A simple SUM function should do.
Availiability KPI* = SUM(ResourceTimephasedDataSet[Availability])
I think i canbring about some more improvements. Please share the link from where i can download your PBI file.
- Anonymous4 years agoNot applicable
Availability is also a a measure, do you think a simple sum will still work?
- Ashish_Mathur4 years agoSuper User
Ideally measures hould never be prceeded with the Table name. That is why i suggested a SUM function. If it is a measure, thena SUMX would be required.
Availiability KPI* = SUMX(ResourceTimephasedDataSet,[Availability])- Anonymous4 years agoNot applicable
I agree, for some reason my Power BI desktop on my computers started adding the table name. If you know how to turn it off, please let me know.