Forum Discussion
Srikanth_dodla
8 years agoNew Member
Count without a column
Need help please. I have created a measure which calculates efficiency %. I want to count rows with efficiency say less 50%, how can i do it?
I dont want to add a new calculated column for efficiency as file is already 160 mb and dont want to increase the size further. Thank you in advance for help
I dont want to add a new calculated column for efficiency as file is already 160 mb and dont want to increase the size further. Thank you in advance for help
3 Replies
- v-chuncz-msftCommunity Support
You may refer to the following measure.
Measure = COUNTROWS ( FILTER ( SUMMARIZE ( Table1, Table1[Column1] ), [efficiency] < 0.5 ) )- Srikanth_dodlaNew MemberI dont want to create a column.... i dont have a column with the efficiency %. It is there as a measure
- v-chuncz-msftCommunity Support