Pulling Data From Concatenated Field

R

RobSol

I have a field that concatenates a repeating table that looks like this:
True;False;True;False;False;etc.
I need to some how pull all the Trues in a separate Text Box but I don't
know the formula to do this in an expression. So the end result should look
like this:
True;True;etc. I am using InfoPath 2003.
Can anyone help?
 
S

Swathi

Hi,

You can put a rule on the repeating table field (field1).
1. If the repeating table field1 = true then
2. Set the field value field2 = concat(field2, field1, ";")
Here field1 -> repeating table field.
Field2 -> the resulted field.

Hope this helps to you.
 
Top