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 have a modified data table as seen below for a Waterfall visual. This table is set-up to have an Attributes column that contains labels, and Values column that contains corresponding numeric values. Italicized columns for ValuePaid, TotalPaidTime and ValueTotal are additional measures that I have created.
LineSK | ValuePaid | TotalPaidTime | Attribute | Value | ValueTotal |
1 | Non Operating Time | 1220 | 13.93% | ||
1 | 7540 | Total Paid Time | 7540 | 86.07% | |
1 | 14 | Maintenance | 14 | ||
1 | 138 | Changeover | 138 | ||
1 | 160 | Clean / Sanitation | 160 | ||
1 | 947.18 | Other | 947.18 | ||
1 | 6280.82 | USLE | 6280.82 |
The table is meant to power two separate Waterfall charts. As such, I have created 2 measures as follows:
LineSK | ValuePaid | TotalPaidTime | Attribute | Value | ValueTotal |
527 | 7540 | Non Operating Time | 1220 | 13.93% | |
527 | 7540 | Total Paid Time | 7540 | 86.07% | |
527 | 0.19% | 7540 | Maintenance | 14 | |
527 | 1.83% | 7540 | Changeover | 138 | |
527 | 2.12% | 7540 | Clean / Sanitation | 160 | |
527 | 12.56% | 7540 | Other | 947.18 | |
527 | 83.30% | 7540 | USLE | 6280.82 |
Solved! Go to Solution.
HI @dhkhanna,
You can try to use the following measure formula to get the percent of 'current value' divided 'total value' and group by 'LineSK'.
ValuePaid =
VAR currAttribute =
SELECTEDVALUE ( 'Waterfall Table'[Attribute] )
VAR total =
CALCULATE (
AVERAGE ( 'Waterfall Table'[Value] ),
FILTER (
ALLSELECTED ( 'Waterfall Table' ),
'Waterfall Table'[Attribute] = "Total Paid Time"
),
VALUES ( 'Waterfall Table'[LineSK] )
)
RETURN
IF (
AND (
currAttribute <> "Total Paid Time",
currAttribute <> "Non Operating Time"
),
DIVIDE (
CALCULATE (
AVERAGE ( 'Waterfall Table'[Value] ),
VALUES ( 'Waterfall Table'[LineSK] )
),
total
)
)
Regards,
Xiaoxin Sheng
HI @dhkhanna,
You can try to use the following measure formula to get the percent of 'current value' divided 'total value' and group by 'LineSK'.
ValuePaid =
VAR currAttribute =
SELECTEDVALUE ( 'Waterfall Table'[Attribute] )
VAR total =
CALCULATE (
AVERAGE ( 'Waterfall Table'[Value] ),
FILTER (
ALLSELECTED ( 'Waterfall Table' ),
'Waterfall Table'[Attribute] = "Total Paid Time"
),
VALUES ( 'Waterfall Table'[LineSK] )
)
RETURN
IF (
AND (
currAttribute <> "Total Paid Time",
currAttribute <> "Non Operating Time"
),
DIVIDE (
CALCULATE (
AVERAGE ( 'Waterfall Table'[Value] ),
VALUES ( 'Waterfall Table'[LineSK] )
),
total
)
)
Regards,
Xiaoxin Sheng
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
27 | |
17 | |
16 | |
12 | |
11 |
User | Count |
---|---|
36 | |
27 | |
26 | |
20 | |
15 |