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.
I'm new to Pbi. I'm trying to replicate an Excel report to Pbi. Excel pivot table was able to produce the 3 column as the difference by showing values as % Difference between Avg of Client Interaction and Avg of RS Case. I want to achieve the same output on the Total column in Pbi Matrix, is it possible?
Thanks in advance.
Solved! Go to Solution.
Hi @Anonymous
please place this measure in your matrix instead of the column
Average Case Age (days) =
VAR AverageDays =
AVERAGE ( TableName[Case Age (days)] )
VAR AverageClient =
CALCULATE (
AVERAGE ( TableName[Case Age (days)] ),
TableName[ColumnName] = "Client Interaction"
)
VAR AverageRS =
CALCULATE (
AVERAGE ( TableName[Case Age (days)] ),
TableName[ColumnName] = "RS Cars"
)
RETURN
IF (
HASONEVALUE ( TableName[ColumnName] ),
AverageDays,
DIVIDE ( AverageRS - AverageClient, AverageClient )
)
Hi @Anonymous
please place this measure in your matrix instead of the column
Average Case Age (days) =
VAR AverageDays =
AVERAGE ( TableName[Case Age (days)] )
VAR AverageClient =
CALCULATE (
AVERAGE ( TableName[Case Age (days)] ),
TableName[ColumnName] = "Client Interaction"
)
VAR AverageRS =
CALCULATE (
AVERAGE ( TableName[Case Age (days)] ),
TableName[ColumnName] = "RS Cars"
)
RETURN
IF (
HASONEVALUE ( TableName[ColumnName] ),
AverageDays,
DIVIDE ( AverageRS - AverageClient, AverageClient )
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
99 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
163 | |
110 | |
61 | |
51 | |
40 |