Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
@Anonymous , 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.
@Anonymous , 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.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!