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

Don'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.

Reply
Anonymous
Not applicable

Need to filter data like yesterday 5:00PM to Today 6:00PM

Hi All,

Need to filter data in one visual like yesterday 5:00PM to Today 6:00PM based on Stardate and starttime columns.

 

 

please help me with logic

 

Thanks in advance !!!!

Ravi

 

 

 

 

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try like

Measure =
var _max = today()
var _t1 =_max + time(18,0,0)
var _t0 =(_max -1 )+ time(17,0,0)
return
calculate(Sum(Table[Value]),filter(Allselected(Table), Table[Datetime]>= _t0 && Table[Datetime]<= _t1))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
az38
Community Champion
Community Champion

Hi @Anonymous 

try to create a column

isFiltered = 
IF(
(Table[Startdate] = TODAY()-1 && Table[Starttime] >= TIME(17,0,0) ) ||
(Table[Startdate] = TODAY() && Table[Starttime] <= TIME(18,0,0) ),
TRUE(),
FALSE()
)

 

then add this Column to visual filters and filter by True


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.