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.
Hi all, I want to a new column with Profile Total only when Product Type = Profile, and GB Total only when Product Type = Storage. Does anyone know how I would do this in the context of the table below? Thanks
Customer | Product Type | Quantity | Metric | Profile Total (desired column) | GB Total (desired column) |
A | Profile | 10 | Thousands | 10,000 | |
A | Storage | 1 | GB | 1 | |
B | Profile | 20 | Thousands | 20,000 | |
B | Storage | 5 | GB | 1 |
Solved! Go to Solution.
Hi,
Please try these two measures(showing the correct total):
Profile Total =
SUMX (
GROUPBY ( 'Table', [Product Type], 'Table'[Customer] ),
CALCULATE (
IF (
MAX ( 'Table'[Product Type] ) = "Profile",
MAX ( 'Table'[Quantity] ) * 1000,
BLANK ()
)
)
)
GB Total =
SUMX (
GROUPBY ( 'Table', [Product Type], 'Table'[Customer] ),
CALCULATE (
IF (
MAX ( 'Table'[Product Type] ) = "Storage",
MAX ( 'Table'[Quantity] ),
BLANK ()
)
)
)
The result shows:
Here is my test pbix file:
Hope this helps.
Best Regards,
Giotto
Hi @Anonymous
try columns
Profile Total =
IF(Table[Product Type] = "Profile"), Table[Quantity]*1000, BLANK() )
and
GB Total =
IF(Table[Product Type] = "Storage"), Table[Quantity], BLANK() )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
80 | |
65 | |
52 | |
50 |
User | Count |
---|---|
211 | |
87 | |
80 | |
69 | |
60 |