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 15 columns. I want to create a custom column that checks if all 15 columns are not NULL to output either Complete or Incomplete
My logic is something like:
=
Solved! Go to Solution.
Hi @Anonymous,
with the function ISBLANK you can check if there is any value.
BLNK =
VAR AnyBlank =
ISBLANK ( TestTable[Column1] ) || ISBLANK ( TestTable[Column2] )
|| ISBLANK ( TestTable[Column3] )
VAR Result =
IF ( AnyBlank; "Incomplete"; "Complete" )
RETURN
Result
Can you post some sample data?
Nick, I attached the sample table and sample formula i'm using
Hi @Anonymous,
please check the 3rd message of this thread if it is the solution you expect. We published our post in the same time and maybe it was overseen.
Logically that looks perfect but a followup question is where would I input that logic?
I created a custom column and then I get this Custom Column prompt which I'll attach below. Within this prompt, I get errors trying similar logic as you posed to I'm guessing that I'm not entering the information in the right area?
Hi @Anonymous ,
in PowerBI in tab Modeling click on New Column. And then insert the DAX code I've sent you.
Ah there we go. Thank you and I accepted the solution
Great to hear about that ![]()
Hi @Anonymous,
with the function ISBLANK you can check if there is any value.
BLNK =
VAR AnyBlank =
ISBLANK ( TestTable[Column1] ) || ISBLANK ( TestTable[Column2] )
|| ISBLANK ( TestTable[Column3] )
VAR Result =
IF ( AnyBlank; "Incomplete"; "Complete" )
RETURN
Result
Check out the May 2026 Power BI update to learn about new features.
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 | |
| 25 | |
| 24 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 26 | |
| 21 | |
| 20 |