Moniker
September 26, 2024, 2:17pm
1
Column A - Text # Column B - Text # Column C - Number # Column D - Long Text
If Column A isnotblank Concatenate([A] ,“Text”) then add a line break
If Column A isblank just “” and so on till Column C.
And this expression will be formula of Column D.
Any thoughts?
Moniker
September 27, 2024, 10:43pm
3
Whatever works. lol
IF or IFs
If( isnotblank[ColumnA]) ,Concatenate([A] ,“Text”) then add a line break, do nothing**)**
Moniker
September 28, 2024, 4:55pm
4
CONCATENATE( if(isnotblank([A]),Concatenate(Others," - “,[A]),”“)&”
“& if(isnotblank([B]),Concatenate(Washing,”- “,[B]),”“)&”
“& if(isnotblank([C]),Concatenate(Damage,” - “,[C]),”“)&”
“& if(isnotblank([D]),Concatenate(Road,” - “,[D]),”") )
This is the definitive line break. So if any column is blank it add the blank line.
That’s why I need it to be conditional.