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.
Hello everyone,
I have a table like this, how can I write the DAX to get total downtime_percent by branch?
The formula is: (100 - downtime_percent)/ number of ID
Thx.
Solved! Go to Solution.
Hi @marge_po
>>write the DAX to get total downtime_percent by branch
create the measure,
TotalByBranch = CALCULATE(SUM('Table'[downtime_percent]),FILTER(ALL('Table'),'Table'[branch]=MIN('Table'[branch])))
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @marge_po
>>write the DAX to get total downtime_percent by branch
create the measure,
TotalByBranch = CALCULATE(SUM('Table'[downtime_percent]),FILTER(ALL('Table'),'Table'[branch]=MIN('Table'[branch])))
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
@marge_po , If case you need a measure
Averagex(Table, 100 - [downtime_percent])
Plot in visual with branch.
If this does not help. As already asked by @menglaro78 .
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Hi,
it's not clear what you want to get, can you give examples with result numbers?
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 |
---|---|
147 | |
85 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |