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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
Anonymous
Not applicable

How to avoid weeks being cut short by the month?

Hello!

 

I would like to know if it is possible to avoid having duplicate weeks, by taking the data at a granularity level from month to week?

 

For example, in the graph it shows week 5 in both January and February, and it looks like sales fell in the last week of January, when they did not. The x-axis is Month and week

xdatita_0-1707765968423.png

 

The dax I use is a calculation of sales for the current year:
Sales curr year = CALCULATE ([Sales], FILTER ( 'Calendar', 'Calendar'[Offset Year] = 0 ))

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous 

 

Please try this:

I create a set of sample:

vzhengdxumsft_0-1707793793609.png

Then create a measure:

Measure = 
	VAR _currentweek = MAX('Table (2)'[week])
	RETURN
		CALCULATE(
			SUM('Table (2)'[value]),
			FILTER(
				ALLSELECTED('Table (2)'),
				'Table (2)'[week] = _currentweek
			)
		)

The result is as follow:

vzhengdxumsft_1-1707793858759.png

Use the all(), allselected(), allexcept(), and removefilter() functions to remove unwanted filtering effects.
Here's a blog about contextual filtering

Understand the Filter Context and How to Control i... - Microsoft Fabric Community

 

Best Regards,

Zhengdong Xu

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 @Anonymous 

 

Please try this:

I create a set of sample:

vzhengdxumsft_0-1707793793609.png

Then create a measure:

Measure = 
	VAR _currentweek = MAX('Table (2)'[week])
	RETURN
		CALCULATE(
			SUM('Table (2)'[value]),
			FILTER(
				ALLSELECTED('Table (2)'),
				'Table (2)'[week] = _currentweek
			)
		)

The result is as follow:

vzhengdxumsft_1-1707793858759.png

Use the all(), allselected(), allexcept(), and removefilter() functions to remove unwanted filtering effects.
Here's a blog about contextual filtering

Understand the Filter Context and How to Control i... - Microsoft Fabric Community

 

Best Regards,

Zhengdong Xu

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

Anonymous
Not applicable

Thank you so much it works great!!

 

An additional question, do you know if it is possible to take week 52 as the first week in the display, only when it appears in January?

 

xdatita_0-1708015983243.png

 

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 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.