Forum Discussion
AlanP514
3 years agoPost Patron
Condtional calculated column
Hi i have 4 columns A,B,C,D I need to create new column E That should be the Combination of C&D So E = C&D and one more condition is there if C Column doesn't have any data, if it is bl...
- 3 years ago
Hi AlanP514 ,
I hope the below image helpful for your query,
Thanks,
Ajith_Kumar
If I answered your question then mark my post as a solution and a kudo would be appreciated.
Ahmedx
3 years agoSuper User
if (ISBLANK([C]),[B], [C]&[D])
OR
if (ISBLANK([C]),[B]&[D], [C]&[D])