Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello everyone , i have the next question:
how can I repeat this data per week from Thursday to Wednesday? below I put a picture of what I have
the red box data is repeated until Wednesday
Thanks for help me
Solved! Go to Solution.
In DAX you can try with this:
1. a New Column to obtain if the day of week is Wednesday get Value1 Column:
Value1onWed =
IF ( WEEKDAY('Table'[Date];2) = 4; 'Table'[Value1] )
2. New Column for the Corrected Values (Repeat for each column)
Value1RV =
VAR _Date = 'Table'[Date]
RETURN
IF (
'Table'[Value1onWed] <> BLANK ();
'Table'[Value1onWed];
CALCULATE (
LASTNONBLANK ( 'Table'[Value1]; 'Table'[Value1] );
FILTER ( 'Table'; 'Table'[Date] < _Date )
)
)
Regards
Victor
Hi, try with this:
--Add a Custom Column for each column (in your case : 3)
if Date.DayOfWeek([Date])=4 then [Value1] else nullif Date.DayOfWeek([Date])=4 then [Value2] else nullif Date.DayOfWeek([Date])=4 then [Value3] else null
-- Fill Down
---Removed original Columns
Regards
Victor
@Vvelarde thanks you ... but how I can apply this if my table is calendar table type?🤔
In DAX you can try with this:
1. a New Column to obtain if the day of week is Wednesday get Value1 Column:
Value1onWed =
IF ( WEEKDAY('Table'[Date];2) = 4; 'Table'[Value1] )
2. New Column for the Corrected Values (Repeat for each column)
Value1RV =
VAR _Date = 'Table'[Date]
RETURN
IF (
'Table'[Value1onWed] <> BLANK ();
'Table'[Value1onWed];
CALCULATE (
LASTNONBLANK ( 'Table'[Value1]; 'Table'[Value1] );
FILTER ( 'Table'; 'Table'[Date] < _Date )
)
)
Regards
Victor
Hi @sebastianqc ,
Do you need to override the values or you just have the first value for each set (Thurday - Wednesday) ?
Ricardo
@camargos88 I need override the first value from the next week (thursday to wednesday), on example the first value is marked on red box
I hope it's useful
Thanks Sebastian
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 193 | |
| 123 | |
| 99 | |
| 67 | |
| 49 |