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, I know it must be simpler but I am literally stuck in this.I have the data like this
Month | Volume in 1000Kgs |
jan | 100 |
feb | 200 |
mar | 300 |
I want the result to be shown as,100/600 for jan,200/600 for feb,300/600 for mar.Please get me the solution for this
Solved! Go to Solution.
All selected (item) worked as comparison to this, this is showing me the exact values in col B
Hi, @Parul_verma
If you just want to display as 100/600 in January, 200/600 in February, and 300/600 in March, then what you might want to create is a Text measure like the following:
Result =
VAR a =
SUM ( 'Table'[Volume in 1000Kgs] )
VAR b =
CALCULATE ( SUM ( 'Table'[Volume in 1000Kgs] ), ALL ( 'Table' ) )
RETURN
a & "/" & b
If you want the result to be a calculated value, you can also consider checking 'show value as percent of grand total' to display the result.
Best Regards,
Community Support Team _ Eason
All selected (item) worked as comparison to this, this is showing me the exact values in col B
not working I am unable to take volume column without any function under calculate
Hi @Parul_verma
I thought it was a measure. Please try
=
DIVIDE ( SUM ( [Volume] ), CALCULATE ( SUM ( [Volumne] ), ALL ( 'Table'[Month] ) ) )
Hi,
"shown" where? In a measure or in a calculated column?
In a measure
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 |
---|---|
21 | |
15 | |
14 | |
11 | |
7 |
User | Count |
---|---|
26 | |
24 | |
12 | |
11 | |
10 |