Forum Discussion
Summarize values that contain false value
- Anonymous6 years ago
amitchandak Still not working. If I use data type as text and use Sum1 = CALCULATE(sum(test1[value]) ;filter(test1, test1[Ready] = 0) ) it doesn't work
If I use data type as it was (true/false) and use Sum1 = CALCULATE(sum(test1[value]) ;filter(test1, test1[Ready] = FALSE()) ) it also doesn't work.
So I think I have to make a new column with conditional formatting based on the ready column and change the "TRUE" to "Yes" and "FALSE" to "No"
Anonymous
Try like
Sum1 = CALCULATE(sum(test1[value]) ;filter(test1, test1[Ready] = FALSE()) )
Sum1 = CALCULATE(sum(test1[value]) ;filter(test1, test1[Ready] = 0) )
What is Data type , if it showing as of now
amitchandak Still not working. If I use data type as text and use Sum1 = CALCULATE(sum(test1[value]) ;filter(test1, test1[Ready] = 0) ) it doesn't work
If I use data type as it was (true/false) and use Sum1 = CALCULATE(sum(test1[value]) ;filter(test1, test1[Ready] = FALSE()) ) it also doesn't work.
So I think I have to make a new column with conditional formatting based on the ready column and change the "TRUE" to "Yes" and "FALSE" to "No"
- v-lili6-msft6 years agoCommunity Support
hi Anonymous
These two measure all work well on my side.
Sum1 = CALCULATE(sum(test1[Value]) , test1[Ready] = FALSE())Sum2 = CALCULATE(sum(test1[Value]) ,FILTER(test1, test1[Ready] = FALSE()))Result:
and here is sample pbix file, please try it.
If you still have the problem, please share your sample pbix file for us have a test.
and "So I think I have to make a new column with conditional formatting based on the ready column and change the "TRUE" to "Yes" and "FALSE" to "No" ", it is a good solution too.
Regards,
Lin