Sorry for the delay in response. I have radio buttons on my invoice that the user can select from and the radio buttons that are selected make up a unique item code. Mobily this makes more senses instead of having to slect from a long list or seach for the words exactly. I have the radio buttons waterfall action as well so it is easy for the user to know what is available to select based on what the other radio buttons are selected. At each radio button selection in write that segment of the code to its text box then concatinate 4 text boxes togeather calling action to join them all togeather. So as the user selects it joins the 4 boxes always even if blank. Then when all 4 radio buttons are selected the item code is populated with the string of text. This is ons example of where i do/would use multiple concatination. I do something simular in a grid output using SQL's + which seems much easier than the method action multiple times so i was wondering if there was a way to do this within one action based on values on the screen. per my original posted question.
Here is my code from the grid. (CASE WHEN [AvailW1M] = 'True' THEN 'M' ELSE '' END) + (CASE WHEN [AvailW1T] = 'True' THEN 'T' ELSE '' END) + (CASE WHEN [AvailW1W] = 'True' THEN 'W' ELSE '' END) + (CASE WHEN [AvailW1H] = 'True' THEN 'H' ELSE '' END) + (CASE WHEN [AvailW1F] = 'True' THEN 'F' ELSE '' END) + (CASE WHEN [AvailW1S] = 'True' THEN 'S' ELSE '' END)
This simply gies me MTWHFS if my customer selects the check boxes next the the approprate days.
Thanks in advanced for the help.