Problem with LINKTOFORM to another App

Hi,

I try to use an action to navigate to another App and pre-fill a form at destination with values of where I come from (both columns called “Description”). I tried this :

LINKTOFORM(Chantier_form, [Description], [_thisrow].[Description], “TheotherApp-128”)

but it does not work. The form is opening in the 2nd App but requested columns are not prefilled. Is there any mistake ?

0 3 303
3 REPLIES 3

@CHRISTOPHE_CHANDELIE
Have you tried with:
LINKTOFORM(Chantier_form, "Description", [Description], “TheotherApp-128”)

Steve
Platinum 4
Platinum 4

The second argument, after the form name, should be a column name, not a column reference as you have (e.g., just Description, without the square brackets). Also, [_thisrow]. is not needed. Try:

LINKTOFORM("Chantier_form", "Description", [Description], “TheotherApp-128”)

That was the solutoin thanks !

Top Labels in this Space