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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
refint650
Helper III
Helper III

OrderDatetime between Startdatetime and enddatetime

Hello All

how to write expression filter datesbetween startdatetime & enddatetime. 

 

refint650_0-1719603483384.png

Thanks

Rs

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @refint650 ,

Here are the steps you can follow:

If you want to use measure to perform an aggregation operation on the values of two slicer-selected dates, you can use the following measure:

Create measure.

 

Measure =
var _selectstart=SELECTEDVALUE('StartDate'[StartDate])
var _selectend=SELECTEDVALUE('EndDate'[EndDate])
return
SUMX(
    FILTER(ALLSELECTED('Date'),
    'Date'[Order DateTime] >=_selectstart&&'Date'[Order DateTime]<=_selectend),[Rand])

 

vyangliumsft_0-1719798727209.png

If you want [Order DateTime] to show the date between two slicer selections, you can use the following measure:

Create measure.

Flag =
var _selectstart=SELECTEDVALUE('StartDate'[StartDate])
var _selectend=SELECTEDVALUE('EndDate'[EndDate])
return
IF(
    MAX('Date'[Order DateTime])>=_selectstart&&MAX('Date'[Order DateTime])<=_selectend,1,0)

Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_0-1719798925541.png

 

vyangliumsft_1-1719798925546.png

 

 

Best Regards,

Liu Yang

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
Anonymous
Not applicable

Hi  @refint650 ,

Here are the steps you can follow:

If you want to use measure to perform an aggregation operation on the values of two slicer-selected dates, you can use the following measure:

Create measure.

 

Measure =
var _selectstart=SELECTEDVALUE('StartDate'[StartDate])
var _selectend=SELECTEDVALUE('EndDate'[EndDate])
return
SUMX(
    FILTER(ALLSELECTED('Date'),
    'Date'[Order DateTime] >=_selectstart&&'Date'[Order DateTime]<=_selectend),[Rand])

 

vyangliumsft_0-1719798727209.png

If you want [Order DateTime] to show the date between two slicer selections, you can use the following measure:

Create measure.

Flag =
var _selectstart=SELECTEDVALUE('StartDate'[StartDate])
var _selectend=SELECTEDVALUE('EndDate'[EndDate])
return
IF(
    MAX('Date'[Order DateTime])>=_selectstart&&MAX('Date'[Order DateTime])<=_selectend,1,0)

Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_0-1719798925541.png

 

vyangliumsft_1-1719798925546.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Pretengineer
Frequent Visitor

Without know more a typical filter for date you can use DATESVETWEEN.


DATESBETWEEN(table1[coulmn1], startdate , enddate)

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.