Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello everyone,
I need help with a conditional column. I have a column with weekday (0-6) and shift number (1-3). The conditional column currently makes the distinction between week and weekend so it writes weekday 5 and 6 in the new column weekend. Now I would also like to add weekday 4, but only shift 3 to the conditional column. Unfortunately, I can't find an option with a double condition. Can anyone help me with this problem?
Best regards
Johannes
Solved! Go to Solution.
In your FILTER, you can use && to have 2 different filter conditions:
VAR WorkingDayShift =
FILTER( ALL (Date ),
'Date'[Working Day] = 1 && 'Date'[Shift Number] = 3
)
In your FILTER, you can use && to have 2 different filter conditions:
VAR WorkingDayShift =
FILTER( ALL (Date ),
'Date'[Working Day] = 1 && 'Date'[Shift Number] = 3
)
The Code of the conditional column is = Table.AddColumn(#"Hinzugefügte benutzerdefinierte Spalte", "Tagestyp", each if [#"Wochentag Nr."] = 5 then "Wochenende" else if [#"Wochentag Nr."] = 6 then "Wochenende" else "Woche") Can you explain me, how to put the code in correctly?
The code I was showing was for a Calculated Column. The code you are showing is for M code (In Power Query). Is that where you want the column?
Yes, PowerQuery would be perfect, the column should just change these few cells to "Weekend" if the Date Number = 4 and Shfit No = 3.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |