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] = nul...
Anonymous
7 years agoNot applicable
Can you post some sample data?
Nolock
7 years agoResident Rockstar
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