Auto fill as combination of two fields

Hi
I am using a select lookup table and the lookup table is inserting the product name.

I need a comma or space separated two field values from lookup table auto inserted into product name.


Lookup Table
Table Name: products
Link field: Id

Display field #1: Id
Display field #2: ProductName
Display field #3: Sprache
Display field #4: Version
Auto fill: Checked (Position->Product=ProductName)

What I want to have is:
Auto fill: (Position->Product=ProductName Sprache Version)

How can I get this?

mpol_ch

Hi,

I have solved my problem with help of “Custom Field” and with this code:

Concat_ws(’ ',Produkt,Sprache,Version)

thanks

mpol_ch