cancel
Showing results for 
Search instead for 
Did you mean: 

concatenating 2 fields in a single text box...

Former Member
0 Kudos

Hi All,

I want to display 2 fields in a single text box of an adobe form....how is it possible???? one field is the pernr and the other is a text field.....

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Could you use a floating field within your text box? In a static text, in the menu select Insert > Floating field and bind this to your data. Widths are automatically expanded.

Regards,

Francois

Former Member
0 Kudos

Hello,

You can do in 2 ways.

1. Wrap 2 fields into one subform,set flow content to the subform and set the expand to width.Set expand to width to the 2 fields.

2. Wrap 2 fields into one subform, set invisible in the object properties , set height and width as 0, Insert 3rd text field into the subform set no binding. Write the below script on the subform in form ready ( if it is in body page).

[code]var f1 = $.field1

var f2 = $.field2

$.field3 = Concat(f1, f2)[/code]

pavan meda

Former Member
0 Kudos

Hi

I tried with the first solution.........didnt work.....could u elaborate more on the first point.

Regards,

Sam.

Former Member
0 Kudos

Can you make the subform binding as none.

Francois's Solution also you can prefer.