Forum Discussion
Power Bi DAX Measure Adding Wrong Help
- 4 years ago
Hi Brite ,
In the total section [Total_Rejected] = 84 > 2, then the measure [Month1_Reject Rate FINAL] returns 0. If you want to sum the measure [Month1_Reject Rate FINAL] in the total section, you can try the following formula:
Total = If( ISFILTERED(Table[column]), [Month1_Reject Rate FINAL], sumx( allselect(Table[column]), [Month1_Reject Rate FINAL] ) )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Brite ,
In the total section [Total_Rejected] = 84 > 2, then the measure [Month1_Reject Rate FINAL] returns 0. If you want to sum the measure [Month1_Reject Rate FINAL] in the total section, you can try the following formula:
Total =
If(
ISFILTERED(Table[column]),
[Month1_Reject Rate FINAL],
sumx( allselect(Table[column]), [Month1_Reject Rate FINAL] )
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.