Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Here is a sample of the data I am working with. The column with "Missing" can also be "On Time", "Late", or "Early".
The issue I am having is there are much fewer data points on the weekends so the chart jolts down and is extremely hard to read trends. How can I go about "linking" Saturdays to Friday and Sundays to Monday? Any other suggestions?
Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
You could create a new date column to combine the dates.
New Date =
VAR a =
WEEKDAY ( 'Table'[Date], 1 )
RETURN
IF (
a = 7,
CALCULATE (
FIRSTNONBLANK ( 'Table'[Date], 1 ),
FILTER ( 'Table', 'Table'[Date] = EARLIER ( 'Table'[Date] ) - 1 )
),
IF (
a = 1,
CALCULATE (
FIRSTNONBLANK ( 'Table'[Date], 1 ),
FILTER ( 'Table', 'Table'[Date] = EARLIER ( 'Table'[Date] ) + 1 )
),
'Table'[Date]
)
)
Hi @Anonymous ,
You could create a new date column to combine the dates.
New Date =
VAR a =
WEEKDAY ( 'Table'[Date], 1 )
RETURN
IF (
a = 7,
CALCULATE (
FIRSTNONBLANK ( 'Table'[Date], 1 ),
FILTER ( 'Table', 'Table'[Date] = EARLIER ( 'Table'[Date] ) - 1 )
),
IF (
a = 1,
CALCULATE (
FIRSTNONBLANK ( 'Table'[Date], 1 ),
FILTER ( 'Table', 'Table'[Date] = EARLIER ( 'Table'[Date] ) + 1 )
),
'Table'[Date]
)
)
That's perfect. Thank you!
I would probably just filter out weekend days. That would it would go straight from Friday to Monday.
-Jared
That is my current solution but the data is important for final reporting numbers. I'd like to be able to include it on the graph totals but not as a seperate point on the line
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.