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
Do you have any ideas on how I display the drill down as a percentage of the date total? e.g
0-1 days - 42706 as a percentage of 42764
1-2 days 58 as a percentage of 42764
Thanks all
Solved! Go to Solution.
Hi @NewbieJono
Thanks for the reply from @bhanu_gautam and @AilleryO .
@NewbieJono , the following steps are for your reference:
Sample:
Create a measure as follows
Measure =
VAR _sum = CALCULATE(SUM('Table'[Value]), ALL('Table'))
RETURN
IF(
ISFILTERED('Table'[Type]),
FORMAT(SUM('Table'[Value]) / _sum, "0.00%"),
SUM('Table'[Value])
)
Output:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @NewbieJono
Thanks for the reply from @bhanu_gautam and @AilleryO .
@NewbieJono , the following steps are for your reference:
Sample:
Create a measure as follows
Measure =
VAR _sum = CALCULATE(SUM('Table'[Value]), ALL('Table'))
RETURN
IF(
ISFILTERED('Table'[Type]),
FORMAT(SUM('Table'[Value]) / _sum, "0.00%"),
SUM('Table'[Value])
)
Output:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
It will look like something :
% in a day =
VAR TotalofDay = CALCULATE( [Total Qty] , ALL( 'Data Product'[Category] ) )
RETURN
DIVIDE( [Total Qty] , TotalofDay )
@NewbieJono , You can create a measure to calculate the percentage of each drill down category relative to number of days and pull that measure in visualization
Proud to be a Super User! |
|
sorry what would that look like?
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 |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |