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
I created a matrix of 2 categories and an ID column - the ID column will be used in the "Value" but as COUNT DISTINCT.
I want a measure to insert in between all columns of the matrix that show the % of each row
Example:
ColumnB Item1 | % of Total | |
ColumnA Item1 | 4 | 4/13 = 30.77% |
ColumnA Item2 | 9 | 9/13 = 69.23% |
Total | 13 | 100% |
Here is what I've tried and my values are grouped by ColumnA, ColumnB, and date.
% of Volume =
VAR totalbyOrigin =
SUMMARIZE (
TableA,
TableA[ColumnA],
TableA[DateCreated],
TableA[ColumnB],
"% of Volume", DISTINCTCOUNT ( TableA[ID] )
)
RETURN
DIVIDE (
totalbyOrigin,
CALCULATE ( DISTINCTCOUNT ( TableA[ID] ), ALLSELECTED () )
)
I get the following error message:
The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.
Solved! Go to Solution.
solving my own problem:
% of Volume =
VAR totalbyOrigin =
SUMMARIZE (
TableA,
TableA[ColumnA],
TableA[DateCreated],
TableA[ColumnB],
"Volume", DISTINCTCOUNT ( TableA[ID] )
)
RETURN
DIVIDE (
SUMX( totalbyOrigin, [Volume]), 100
)
THen I added this to my matrix and selected "percent of column".
solving my own problem:
% of Volume =
VAR totalbyOrigin =
SUMMARIZE (
TableA,
TableA[ColumnA],
TableA[DateCreated],
TableA[ColumnB],
"Volume", DISTINCTCOUNT ( TableA[ID] )
)
RETURN
DIVIDE (
SUMX( totalbyOrigin, [Volume]), 100
)
THen I added this to my matrix and selected "percent of column".
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 |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |