Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
When I'm tyring to export underlying data for a Card visual where i used a measurre to have a value to the card visual. But, when I do the same thing with Table chart it gave the correct results.
The measure which i've used to calculate value to card visual as follows:
Solved! Go to Solution.
Thanks for your reply, It really helped me a lot. but, I did minor change in your measure then, it works for me. When I go with yours the Count Accuracy values are summing up for all the records and giving me the final result. So, I modified and it's working now.
What I used is:
Count Accuracy =
IF (
ISBLANK ( SUM ( 'MAXIMO INVTRANS'[CURBAL] ) ),
BLANK (),
IF (
AND (
SUM ( 'MAXIMO INVTRANS'[CURBAL] ) <> BLANK (),
SUM ( 'MAXIMO INVTRANS'[CURBAL] ) > 0
),
DIVIDE (
ABS ( SUM ( 'MAXIMO INVTRANS'[PHYSCNT] ) - SUM ( 'MAXIMO INVTRANS'[CURBAL] ) ),
SUM ( 'MAXIMO INVTRANS'[CURBAL] )
),
0
)
)
)
Hi @Raghu_1753 ,
Please try the following measure.
Count Accuracy =
SUMX (
SUMMARIZE (
'Table',
'Table'[TRANSDATE],
"MEASURE",
IF (
ISBLANK ( SUM ( 'MAXIMO INVTRANS'[CURBAL] ) ),
BLANK (),
IF (
AND (
SUM ( 'MAXIMO INVTRANS'[CURBAL] ) <> BLANK (),
SUM ( 'MAXIMO INVTRANS'[CURBAL] ) > 0
),
DIVIDE (
ABS ( SUM ( 'MAXIMO INVTRANS'[PHYSCNT] ) - SUM ( 'MAXIMO INVTRANS'[CURBAL] ) ),
SUM ( 'MAXIMO INVTRANS'[CURBAL] )
),
0
)
)
),
[MEASURE]
)
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for your reply, It really helped me a lot. but, I did minor change in your measure then, it works for me. When I go with yours the Count Accuracy values are summing up for all the records and giving me the final result. So, I modified and it's working now.
What I used is:
Count Accuracy =
IF (
ISBLANK ( SUM ( 'MAXIMO INVTRANS'[CURBAL] ) ),
BLANK (),
IF (
AND (
SUM ( 'MAXIMO INVTRANS'[CURBAL] ) <> BLANK (),
SUM ( 'MAXIMO INVTRANS'[CURBAL] ) > 0
),
DIVIDE (
ABS ( SUM ( 'MAXIMO INVTRANS'[PHYSCNT] ) - SUM ( 'MAXIMO INVTRANS'[CURBAL] ) ),
SUM ( 'MAXIMO INVTRANS'[CURBAL] )
),
0
)
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
49 | |
28 | |
21 | |
20 | |
20 |
User | Count |
---|---|
52 | |
51 | |
27 | |
26 | |
22 |