Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi there
Not sure if this is possible, but I want to create a measure to SUM the total gross column.
Although my screenshot looks like the information shown is in one matrix, it is not, each line is a separate matrix.
(Note: I did this because I wasn't sure of any other way to do it based on my current knowledge level, and because the data required is from multiple tables from our datawarehouse and there is no key identifier to link them at this stage).
So my issue is, the Total Gross for each department is calculated differently and has a separate measure for each.
When I create a new measure for Operating Gross to sum the individual Total Gross amounts, the incorrect result is being produced. I have ensured all the same filters apply and still don't get the right result.
Is there any way to do this?
Thank you.
Melanie
Solved! Go to Solution.
Hi @melanie-g ,
It seems that the total value of measure is not correct, right? This document has a detailed explanation.
Please refer to.
I have also create a simple sample, please refer to it to see if it helps you.
Measure_2 =
VAR _A =
SUMMARIZE ( 'Table', 'Table'[suject], "AAA", [Measure] )
RETURN
IF ( ISINSCOPE ( 'Table'[suject] ), [Measure], SUMX ( _A, [AAA] ) )
If I have misunderstood your meaning, please provide more details with your desired output and pbix file without privacy information (Or some sample data).
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @melanie-g ,
It seems that the total value of measure is not correct, right? This document has a detailed explanation.
Please refer to.
I have also create a simple sample, please refer to it to see if it helps you.
Measure_2 =
VAR _A =
SUMMARIZE ( 'Table', 'Table'[suject], "AAA", [Measure] )
RETURN
IF ( ISINSCOPE ( 'Table'[suject] ), [Measure], SUMX ( _A, [AAA] ) )
If I have misunderstood your meaning, please provide more details with your desired output and pbix file without privacy information (Or some sample data).
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
7 |