Dec 29, 2006 #1 ss7415 Programmer Dec 7, 2006 84 US i have a forumla, if one fields is blank i do not want to see a comma after, if both are populated i want to see a comma to seperate. how do i do that {@display} +","+ {@display1} with this there is a comma regardless
i have a forumla, if one fields is blank i do not want to see a comma after, if both are populated i want to see a comma to seperate. how do i do that {@display} +","+ {@display1} with this there is a comma regardless
Dec 29, 2006 #2 thiagarr Technical User Oct 20, 2006 86 US Hi, You probably will need an if statement to achieve this. An example could be something like the following: Code: if {@Display} = "" then {@Display1} else {@Display}&","&{@Display1} HTH TR Upvote 0 Downvote
Hi, You probably will need an if statement to achieve this. An example could be something like the following: Code: if {@Display} = "" then {@Display1} else {@Display}&","&{@Display1} HTH TR