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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
damit23183
Employee
Employee

Display Alternate week number only

Hi,

 

I am working on column chart where I would like to only show alternate week number in graph,

 

I have this now;

Test.png

However, I would like to see like this;

Test.png

As you see I dont want to show higlighted week number, however all column should be there with values in it. Only want to hide higlighted week number on x-axis otherwise everything should be same.

 

NOTE FYI: This stack column chart.

I tried with ISEVEN and ISODD based on week number but didnt work.

 

 

Thanks

 

1 ACCEPTED SOLUTION

No, it didn't resolve but convinced my client to choose to other way.

Thanks for reaching out.

View solution in original post

7 REPLIES 7
v-xiaotang
Community Support
Community Support

Hi @damit23183 

Thanks for reaching out to us.

I just want to confirm if you resolved this issue? If yes, you can accept the answer helpful as the solution or share you method and accept it as solution, thanks for your contribution to improve Power BI.

If you need more help, please let me know.

 

Best Regards,

Community Support Team _Tang

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

No, it didn't resolve but convinced my client to choose to other way.

Thanks for reaching out.

Hello!

 

I am wondering how you displayed the weeks by date. I found the week numbers, but my client would like this in an easier to read format. What formula did you use to display the weeks with month and first date of the week? As you have in your graph. 

 

Thanks!

kunal15sep
Frequent Visitor

Add a calculated column:

 

var _weeknum= WEEKNUM(DATE[DATE])

 

RETURN

IF(_weeknum%2==1,1,0)

 

Use desire weeknum in visual filter of the chart

Hi Kunal,

 

Thank you for your response.

Just a quick question on DAX you have provided;

 

In Return statement, is it % or / ? Because how come % will work?

Thanks

I meant MOD(_weeknum,2).

Please check the documentation here: 

 

https://learn.microsoft.com/en-us/dax/mod-function-dax

Thanks for your response.

 

Well it didnt work though. I convinced them to choose another solution.

 

Thanks

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.