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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
pcabrero
Advocate II
Advocate II

graph visualization of specific weekday

Hello Community;

I've created a simple line graph with dates in the X-Axis. Because client meetings are on mondays, I would need that only Mondays are visible in the axis every day, but not loosing the rest of the values in the graph.

In excel I did it by including limits (min) and units (7) in the settings pannel, but cannot find this functionality in PowerBI.

I've created a column with the weekday, but if I insert the filter weekday=1 (monday) in the graph I loose all the other set of data (not mondays data).

Please, could anyone help me on this?

Many thanks in advance!

 

2 REPLIES 2
Eric_Zhang
Microsoft Employee
Microsoft Employee


@pcabrero wrote:

Hello Community;

I've created a simple line graph with dates in the X-Axis. Because client meetings are on mondays, I would need that only Mondays are visible in the axis every day, but not loosing the rest of the values in the graph.

In excel I did it by including limits (min) and units (7) in the settings pannel, but cannot find this functionality in PowerBI.

I've created a column with the weekday, but if I insert the filter weekday=1 (monday) in the graph I loose all the other set of data (not mondays data).

Please, could anyone help me on this?

Many thanks in advance!

 


@pcabrero

AFAIK you can't customize the X-Axis. As a workaround, you may try to use a combo chart and create a measure to highlight the Monday values.

 

Monday values = IF(WEEKDAY(MAX('table'[DATE]))=2,SUM('table'[Value]),BLANK())

Capture.PNG

@Eric_Zhang Thanks for the answer,

Unfortunatelly, this does not fit the client specifications in this case. I will keep on searching.

Again, thanks a lot for your time.

Helpful resources

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

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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