Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I have created true or false measures out of a 2 different measure
For example: Cash holding if(measure1>measure2, 0,1).
I am trying to count how many numbers of 1 we got as a card visual but nothing seems to be working. Does anyone have any other way? When I select the Card visual it does not give the proper count.
Solved! Go to Solution.
I thought you said true/false output. No issues. Try
you my try
SUMX (
VALUES ( Table[PostDate] ),
[Cash_Holding_Over_Under]
)
Hi @rahulvyas
you my try
SUMX (
VALUES ( Table[PostDate] ),
CALCULATE (
IF (
[Cash_Holding_Over_Under] = TRUE (),
1
)
)
)
Does not work. Getting the error. I also check the format and its a "Whole Number"
I thought you said true/false output. No issues. Try
you my try
SUMX (
VALUES ( Table[PostDate] ),
[Cash_Holding_Over_Under]
)