Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
aso1
Helper II
Helper II

Show data which has duration above X hours

I have a start and end column with date/time stamp. I made a custom column named 'BackupTime' which subtracts the duration from those two : "Duration.ToText([Start]-[End])" .... 

 

I want to achieve this : 

Show me backups that are under -10 hours.

 

For example the marked below. 

How is that possible?... 

 

minus10.jpg

 

I just want the ones that are over 10 hours of duration to be shown. not the other ones. 

 

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @aso1 

Create a column with dax

hour = DATEDIFF([end],[start],HOUR)

Capture4.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @aso1 

Create a column with dax

hour = DATEDIFF([end],[start],HOUR)

Capture4.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@aso1 , put a visual level filter [Backup time] <-10

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors