- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Date slicer showing previous day excluding weekends.
Hello, I have a PowerBI dashboard where I only want to see data from the prior business date. Is there a formula I can write for this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @KhrystinaM
Based on your information, I create a table:
Please following these steps:
- Create a new column named PreviousData, and use the following DAX expression:
PreviousData =
VAR a = CALCULATE(SUM('Table'[Value]),FILTER(ALLSELECTED('Table'),'Table'[Date]=EARLIER('Table'[Date])-1))
RETURN
IF(WEEKDAY('Table'[Date])=1||WEEKDAY('Table'[Date])-1=7||WEEKDAY('Table'[Date])-1=1,BLANK(),a)
- Then create a dashboard, put previousData into the dashboard, create a slicer, and put the Date in, when we select the Date, the dashboard will show the information of the previous day, and will not return the weekend.
For example, if I select the date as Monday, he will not display the data for Sunday.
If I select a date on Saturday, it will show the value of the previous day, which is Friday.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @KhrystinaM
Create a new column in the home page instead of Custom Column in Power Query.
Powe Query uses M and mine is a DAX expression, so it gets an error in Power Query.
Try selecting New column under Modeling and using DAX again.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @KhrystinaM
Based on your information, I create a table:
Please following these steps:
- Create a new column named PreviousData, and use the following DAX expression:
PreviousData =
VAR a = CALCULATE(SUM('Table'[Value]),FILTER(ALLSELECTED('Table'),'Table'[Date]=EARLIER('Table'[Date])-1))
RETURN
IF(WEEKDAY('Table'[Date])=1||WEEKDAY('Table'[Date])-1=7||WEEKDAY('Table'[Date])-1=1,BLANK(),a)
- Then create a dashboard, put previousData into the dashboard, create a slicer, and put the Date in, when we select the Date, the dashboard will show the information of the previous day, and will not return the weekend.
For example, if I select the date as Monday, he will not display the data for Sunday.
If I select a date on Saturday, it will show the value of the previous day, which is Friday.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @KhrystinaM
Create a new column in the home page instead of Custom Column in Power Query.
Powe Query uses M and mine is a DAX expression, so it gets an error in Power Query.
Try selecting New column under Modeling and using DAX again.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

That worked, thank you!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @KhrystinaM
Your message header and body little confusing
You are taking about Slicer data or filter data in Other visual
Can you share details, expected result and screenshot
Proud to be a Super User! | |

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
08-06-2024 02:17 AM | |||
07-17-2024 05:45 AM | |||
Anonymous
| 02-20-2024 06:17 AM | ||
12-16-2022 01:08 AM | |||
10-31-2023 01:00 AM |
User | Count |
---|---|
140 | |
110 | |
81 | |
60 | |
46 |