My current expression is
CONCATENATE(
if(isnotblank([WASHING]),Concatenate(Washing," - ",[WASHING]),"")&"
"&
if(isnotblank([DAMAGE]),Concatenate(Damage," - ",[DAMAGE]),"")&"
"&
if(isnotblank([Road Fare]),Concatenate(Road," - ",[Road Fare]),"")&"
"&
if(isnotblank([Others]),Concatenate(Others," - ",[Others]),"")
)
Solved! Go to Solution.
Or this:
SUBSTITUTE(
CONCATENATE(
LIST(
IFS((0 <> [WASHING]), ("Washing - " & [WASHING])),
IFS((0 <> [DAMAGE]), ("Damage - " & [DAMAGE])),
IFS((0 <> [Road Fare]), ("Road - " & [Road Fare])),
IFS((0 <> [Others]), ("Others - " & [Others]))
)
- LIST("")
),
" , ",
"
"
)
User | Count |
---|---|
35 | |
9 | |
3 | |
3 | |
2 |