Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
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
I've tried multiple ways and can't seem to get this to work...
I want to look at the columns FMLAIntermittent and Assignment
If FMLAIntermittent is null and assignment is not: Training, Other, Communications
if both are true: Ops
otherwise, NULL
OPS = IF(LongTermLeaveStatus[FMLAIntermittent] = NULL && (LongTermLeaveStatus[Assignment] <> "Training" || LongTermLeaveStatus[Assignment] <> "Other"), "Ops", Blank)
Solved! Go to Solution.
Hi @sully343 ,
You could try below code:-
OPS =
IF (
AND (
LongTermLeaveStatus[FMLAIntermittent] = BLANK (),
LongTermLeaveStatus[Assignment] IN { "Training", "Other" }
),
"Ops",
BLANK ()
)
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @sully343 ,
You could try below code:-
OPS =
IF (
AND (
LongTermLeaveStatus[FMLAIntermittent] = BLANK (),
LongTermLeaveStatus[Assignment] IN { "Training", "Other" }
),
"Ops",
BLANK ()
)
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
That worked! I just switched the "ops" and Blank response, but it did what I needed it to! Thank you!
Try below
OPS = IF(ISBLANK(LongTermLeaveStatus[FMLAIntermittent])=TRUE && (LongTermLeaveStatus[Assignment] <> "Training" || LongTermLeaveStatus[Assignment] <> "Other"), "Ops", Blank)
Proud to be a Super User!
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 |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 64 | |
| 58 | |
| 31 | |
| 25 | |
| 25 |