Hi @SatheeskannaK @Mohan_Dugganab @DavidKangni
can we use if , else if ,else condition in custom action in the custom action body to send out any msg
if (a== "1")
ABC
esle if (a== "2")
ZXC
else if (a=="3")
QWE
else
byee
Solved! Go to Solution.
Views
Replies
Total Likes
It will be on the following lines
if (a=="1")
then ("XYZ")
else (
if (a=="2")
then ("XYZ")
else (
if (a=="3")
then ("XYZ")
else ("No Segment")
)
)
It will be on the following lines
if (a=="1")
then ("XYZ")
else (
if (a=="2")
then ("XYZ")
else (
if (a=="3")
then ("XYZ")
else ("No Segment")
)
)
thanks @Mohan_Dugganab just solved this few min back
Views
Replies
Total Likes