Hi,
I have 3 fields(CA1,CA2,CA3) as below . I need output as 1.SMITH, 2.ROCH, 3.HEALTH for not empty columns and for empty columns I want it as 1.KIN in my target column TEXT.
| CA1 | CA2 | CA3 |
| KIN | | |
| SMITH | ROCH | HEALTH |
| KIN | BRIDGE | |
| KIN | AMERI | |
| MORGAN | KIN | CARE |
Target :
| TEXT |
| 1.KIN |
| 1.SMITH, 2.ROCH, 3.HEALTH |
| 1.KIN, 2.BRIDGE |
Please help me to get the result.
Below is the condition I am using in formula tool for all three non empty columns but I am getting null() in my output.
If (! Is Empty ([CA1]) and ! Is Empty ([CA2]) and ! Is Empty([CA3]))
then "1."+[CA1]+"2."+[CA2]+"3."+[CA3]
else null()
endif