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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi All,
I have the table like below, how can I add saturday, sunday or Public Holiday inside this table if the value is blank. Attached also the example of excel the answer I want.
Thanks and Regards,
Fathopes.
Solved! Go to Solution.
Hi @Fathopes ,
Basically you will need a table contains dates with weekends and holidays.
For exmaple:
Table1:
Table2:
Then add a column.
Column =
IF (
ISBLANK ( Table1[value] ),
LOOKUPVALUE ( Table2[weekends or holidays], Table2[days], Table1[days] ),
FORMAT ( Table1[value], "" )
)
Best Regards,
Jay
Hi @Fathopes ,
Basically you will need a table contains dates with weekends and holidays.
For exmaple:
Table1:
Table2:
Then add a column.
Column =
IF (
ISBLANK ( Table1[value] ),
LOOKUPVALUE ( Table2[weekends or holidays], Table2[days], Table1[days] ),
FORMAT ( Table1[value], "" )
)
Best Regards,
Jay
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!