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
Hi, I am having issued with my formula not summing up at the Total and Subtotal level. I would like to show me the sum in the subtototals and totals instead of Zeros (Because it is doing it linear)
Solved! Go to Solution.
Hi @Anonymous ,
According to your description, I create a sample.
RR23 and Average RR23 are all measures.
RR23 = MAX('Table'[Sales])
Average RR 23 = MAX('Table'[Cost])
Here's my solution, create a measure.
Measure =
SUMX (
ADDCOLUMNS (
'Table',
"Diff",
IF ( [RR23] > [Average RR 23], [RR23] - [Average RR 23], 0 )
),
[Diff]
)
Get the correct result.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
According to your description, I create a sample.
RR23 and Average RR23 are all measures.
RR23 = MAX('Table'[Sales])
Average RR 23 = MAX('Table'[Cost])
Here's my solution, create a measure.
Measure =
SUMX (
ADDCOLUMNS (
'Table',
"Diff",
IF ( [RR23] > [Average RR 23], [RR23] - [Average RR 23], 0 )
),
[Diff]
)
Get the correct result.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
pls try this
opportunity 2= IF ( ISFILTER (category), Opportunity, 0)
Proud to be a Super User!
Hi,
it is not working. I am using the following formula but it does not seems to be calculating correcly.
what I essentially need is for the opportunity column to be = Return amount - Return $@ avg... but it is not doing it.
could you pls provide the sample data and expected output?
Proud to be a Super User!
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 |
---|---|
113 | |
80 | |
78 | |
44 | |
37 |
User | Count |
---|---|
157 | |
112 | |
64 | |
60 | |
54 |