March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi friends!
I've got a Matrix with two row headers fields and i need to get the result of divide one columm by another (Both are distinct count fields). For example:
In green the two row header fields, and i need to obtain the division of 8 by 49883 and 3 by 4988
Solved! Go to Solution.
Hi @marcss44
Here is the report back with the measures https://drive.google.com/file/d/1j6eHxkYc6gBObIRkU3jd218izWoEa_7r/view?usp=sharing
Joe
Proud to be a Super User! | |
Date tables help! Learn more
Ok, can you share a sample of your data with all column names visible?
Proud to be a Super User! | |
Date tables help! Learn more
Hi @marcss44
Here is the report back with the measures https://drive.google.com/file/d/1j6eHxkYc6gBObIRkU3jd218izWoEa_7r/view?usp=sharing
Joe
Proud to be a Super User! | |
Date tables help! Learn more
Hi @marcss44
I will presume that 3 by 4988 should be 3 by 49883?
Lets create some measures to get the sum of each column
IDS Total = SUM(TABLE[IDS TOTAL])
ID SCRAP = SUM(Table[ID SCRAP])
We will now create a measure that gets the Total of IDS Total that removes filters.
IDS Total - All =
CALCULATE([IDS Total], /// we use the first measure
ALLEXCEPT(Table[Familia])
)
Now lets calculate the division
% of IDS Total =
DIVIDE([ID SCRAP], [IDS Total], 0)
Convert to % if needed
Joe
Proud to be a Super User! | |
Date tables help! Learn more
This part is not working:
IDS Total - All = CALCULATE([IDS Total], /// we use the first measure ALLEXCEPT(Table[Familia]) )
The ALLEXCEPT says: Not enought arguments...
Sorrry my mistake, It should work with this now
IDS Total - All =
CALCULATE([IDS Total], /// we use the first measure
ALL('Table'))
Proud to be a Super User! | |
Date tables help! Learn more
No, is not working:
8/49883 it shows 100%
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |