Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I'm creating a custom column. I have 3 fields [FieldA, [FieldB], [FieldC], I'm trying to write a conditional clause that produces a value if they are all e fields null else another if any of them aren't Null
each if ([FieldA] = "" and [FieldB] = "" and [FieldC] = "") then "All are null" else "Not null"
This isn't producing any syntax errors. When it runs it assigns every value in the new column to "Not null". I know there are hundreds of rows where all 3 fields are null so this is incorrect. I'm so close.. I've tried ISBLANK, it doesn't like it. How can I do this ?
Solved! Go to Solution.
That worked , Thank you !
instead of ="" use =null
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.