Forum Discussion
Anonymous
7 years agoNot applicable
Custom Column - handle comparing multiple null columns
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:
=
[ID] = null
or [NAME] = null
or [Application] = null
or [Application Type] = null
etc etc
then "Incomplete"
else "Complete"
But I always get Incomplete even though there are multiple rows with everything filled in.
Any ideas on how to structure that logic?
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
9 Replies
- AnonymousNot applicable
Can you post some sample data?
- AnonymousNot applicable
- AnonymousNot applicable
Nick, I attached the sample table and sample formula i'm using
- NolockResident Rockstar
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.