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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
pippo80
New Member

Naming of specific period for filtering

Hi there,

 

I  would ike to creat a column naming specific date ranges in order to create a filter afterwards. Right now I have set up the follwing IF-statement but it is rather a long formula, specifically if I want to add more weekly periods afterwards:

 

Date Range = IF('[DimDate] = DATE(2017;06;22);"22.-28.06";IF(''[DimDate] = DATE(2017;06;23);"22.-28.06";IF('[DimDate] = DATE(2017;06;24);"22.-28.06";IF('[DimDate] = DATE(2017;06;25);"22.-28.06";IF('[DimDate] = DATE(2017;06;26);"22.-28.06";IF('[DimDate] = DATE(2017;06;27);"22.-28.06";IF('[DimDate] = DATE(2017;06;28);"22.-28.06";"")))))))

 

Is there a way of doing it in a 'smarter' way? I am quite new to DAX...

 

Thanks

P

1 ACCEPTED SOLUTION
v-caliao-msft
Microsoft Employee
Microsoft Employee

@pippo80,

 

Maybe you can use the DAX below instead.

Date Range = IF(WEEKDAY('Table'[Date])<5,DAY('Table'[Date]-WEEKDAY('Table'[Date])-2)&"-"&DAY('Table'[Date]-WEEKDAY('Table'[Date])+4)&" "&RIGHT("00"&MONTH('Table'[Date]-WEEKDAY('Table'[Date])+4),2),DAY('Table'[Date]-WEEKDAY('Table'[Date])+5)&"-"&DAY('Table'[Date]-WEEKDAY('Table'[Date])+11)&" "&RIGHT("00"&MONTH('Table'[Date]-WEEKDAY('Table'[Date])+11),2))

Capture.PNG

 

Regards,

Charlie Liao

View solution in original post

2 REPLIES 2
v-caliao-msft
Microsoft Employee
Microsoft Employee

@pippo80,

 

Maybe you can use the DAX below instead.

Date Range = IF(WEEKDAY('Table'[Date])<5,DAY('Table'[Date]-WEEKDAY('Table'[Date])-2)&"-"&DAY('Table'[Date]-WEEKDAY('Table'[Date])+4)&" "&RIGHT("00"&MONTH('Table'[Date]-WEEKDAY('Table'[Date])+4),2),DAY('Table'[Date]-WEEKDAY('Table'[Date])+5)&"-"&DAY('Table'[Date]-WEEKDAY('Table'[Date])+11)&" "&RIGHT("00"&MONTH('Table'[Date]-WEEKDAY('Table'[Date])+11),2))

Capture.PNG

 

Regards,

Charlie Liao

GilbertQ
Super User
Super User

Hi @pippo80

 

What I would suggest is to create a Date Table, and in your Date table you can then add new columns in the Query Editor. In the Query Editor there is an option for a Conditional Column where you can easily specify your conditions for the column.

 

This also then means that the data is loaded into your Data Model and ready to use.

 

You can use this as an example to create the Date Table: https://www.fourmoo.com/2016/09/13/power-bi-how-to-easily-create-dynamic-date-tabledimension-with-fi...





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

Helpful resources

Announcements
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.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

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