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
Hi Community!
I have made some measures and when I put them in a matrix, one of the measures total is wrong.
The "nedskrivning" measure is:
And the measure for "Grundlag", which is included in above screen dump, is:
"Værdi" looks like :
"The measure for "Reduktion" is:
I hope anyone can help me
Best regards
Rune
Solved! Go to Solution.
Hi @Anonymous
Try this measure based on the one you already have:
Nedskrivning TOT =
SUMX ( DISTINCT ( Table1[Kuranskode ny] ), [Nedskrivning] )
This assumes you want to add up the rows. If not, change the iterator.
It'd be better if you show the pieces of code in plain text (using the </> button to instert them without losing the formatting) rather than on screen captures
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @Anonymous
Try this measure based on the one you already have:
Nedskrivning TOT =
SUMX ( DISTINCT ( Table1[Kuranskode ny] ), [Nedskrivning] )
This assumes you want to add up the rows. If not, change the iterator.
It'd be better if you show the pieces of code in plain text (using the </> button to instert them without losing the formatting) rather than on screen captures
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Thanks, it worked perfecly!
@Anonymous , Try like measure like and check
sumx(values(Table[kuranskodeny]), [nedskrivning])