This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I have 2 date tables both with unique Dates.
1. Is a Table that displays Year and Good Friday Date
Year Good Friday
2021 04/02/2021
2022 04/15/2022
2023 04/07/2023
2, The other is a general Date table.
I am trying to create a "Holiday" column in the the Date table using "Switch"
Solved! Go to Solution.
Try someting like this for the column.
Holiday =
SWITCH (
TRUE (),
NOT ISBLANK (
LOOKUPVALUE (
'Good Friday Years'[Good Friday],
'Good Friday Years'[Good Friday], Dates[Date]
)
), "Good Friday",
""
)
I have attached a file with a Dates table along with a Holiday table and a GoodFriday table and I use both of those to tag the holidays on the dates table. The idea for the holiday table came from this post
https://community.powerbi.com/t5/Desktop/Holiday-date-patterns/m-p/768950
It uses the day of the week as well as the day of the month of the holiday and the month to identify what dates should be tagged as holidays.
You can try something like...
Holiday =
var _goodFriday =
LOOKUPVALUE('Good Friday Years'[Good Friday], 'Good Friday Years'[Year], dimDate[Date].[Year], 'Good Friday Years'[Good Friday], dimDate[Date])
return
IF(
ISBLANK(_goodFriday),
"",
"Good Friday"
)
Proud to be a Super User! | |
Try someting like this for the column.
Holiday =
SWITCH (
TRUE (),
NOT ISBLANK (
LOOKUPVALUE (
'Good Friday Years'[Good Friday],
'Good Friday Years'[Good Friday], Dates[Date]
)
), "Good Friday",
""
)
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 43 | |
| 28 | |
| 24 | |
| 22 |