Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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!
User | Count |
---|---|
123 | |
76 | |
62 | |
50 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |