The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello,
for a matrix i want to vanish one row and just want to show the total. C i calculateted as A - B:
I tried something like
Measure =
IF ( ISINSCOPE ( TABLE ( Column2 ) ) && MAX ( TABLE ( Column2 ) ) = "C",
BLANK ( ),
[value] )
where value is a measure who creates a new table with UNION and the difference C = A - B.
Result is that Row C vanish completely. Some ideas where the mistake is?
Many thanks.
Best regards
Power Pikachu
PS: Normally we have 12 month and a total. I unintentionally used December as a total. Hope it doesnt matter 🙂
@Pikachu-Power , You have to try measure like
Measure =
IF ( ISINSCOPE ( TABLE[Column2] ) && MAX ( TABLE[Column2 ] ) = "C",
calculate([Measure],TABLE[Column2 ] ="A") - calculate([Measure],TABLE[Column2 ] ="B")
[Measure] )
Hello,
what is [Measure] in your DAX code? My created Measure or maybe [value]? I missing something like BLANK( ). Normally the difference is a little more complicated with dummy values and UNION. I dont know if if i can pull out from [value].
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
78 | |
76 | |
41 | |
37 |
User | Count |
---|---|
157 | |
113 | |
64 | |
60 | |
55 |