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

View all the Fabric Data Days sessions on demand. View schedule

Reply
IAM
Helper III
Helper III

Measure to highlight created Yesterday, but 3 days on Monday

Hi all,

 

Is there a clean measure (so without many if statements) for the following?

 

When a order is created Yesterday, I want them showing in my table. But on a Monday, I want to see the orders that are created Friday, Saturday and Sunday.

 

Can anyone help me figure out a efficient measure for this?

 

Table : Export

Column : Date Created

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @IAM ,

 

Monday shows orders from the previous Friday to the previous Sunday, the rest (including Saturday and Sunday) shows orders from the previous day?

Please new a measure like:

Measure = 
VAR _today = TODAY()
VAR _weekday = WEEKDAY(_today,2)
VAR _order_date = SELECTEDVALUE('Table'[Date])
VAR _result = 
SWITCH(
    TRUE(),
    _weekday=1 && _order_date>=_today-3&&_order_date<=_order_date-1,1,
    _weekday<>1 && _order_date=_today-1,1
)
RETURN
_result

This metric is then used as a filter for table visuals and configured as such.

vcgaomsft_0-1675840142719.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @IAM ,

 

Monday shows orders from the previous Friday to the previous Sunday, the rest (including Saturday and Sunday) shows orders from the previous day?

Please new a measure like:

Measure = 
VAR _today = TODAY()
VAR _weekday = WEEKDAY(_today,2)
VAR _order_date = SELECTEDVALUE('Table'[Date])
VAR _result = 
SWITCH(
    TRUE(),
    _weekday=1 && _order_date>=_today-3&&_order_date<=_order_date-1,1,
    _weekday<>1 && _order_date=_today-1,1
)
RETURN
_result

This metric is then used as a filter for table visuals and configured as such.

vcgaomsft_0-1675840142719.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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
Top Kudoed Authors