The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I have a table called Downtime that has columns StartDate and Loss for each event. I created a Date table that has each day in it so I am using that Date table to get a Hours column that gives 24 hours in each day.
I want to get Date[Hours]-Downtime[Loss] for each day but I'm not sure how to tie these two tables together and how to get this column/measure.
Thanks!
Solved! Go to Solution.
@TaylorG , Try a measure like
countdistinct(Downtime[Date])*24 - Sum(Downtime[Loss])
or
countdistinct(Date[Date])*24 - Sum(Downtime[Loss])
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@TaylorG , Try a measure like
countdistinct(Downtime[Date])*24 - Sum(Downtime[Loss])
or
countdistinct(Date[Date])*24 - Sum(Downtime[Loss])
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
110 | |
80 | |
66 | |
53 | |
52 |
User | Count |
---|---|
121 | |
118 | |
77 | |
64 | |
63 |