add new form

Hi all , 

i have a question . 

It's possibile to create o recall a new form in this view ? 

I explain well.

peppemigl_1-1696174956297.png

Using a form I entered this data into a calendar.... when I see the data entered in the calendar and click on the details I would like to create a button which takes me back to another form to upload documents... is it possible to do this?

Solved Solved
0 6 244
1 ACCEPTED SOLUTION

Yes, that's what "Column" and "Value" are used for. 

Let's say you have a column in the form called Name and you want it to be filled with "John" you can use the following formula:

LINKTOFORM("NameOfTheForm", "Name", "John"]

You can also use more columns like this

LINKTOFORM("NameOfTheForm", "Name", "John", "Age", "30"] and so on

You can also use data from the table you call the action from:

LINKTOFORM("NameOfTheForm", "Name", [_thisrow].[Name])

 

View solution in original post

6 REPLIES 6

Hello, 

You can use LINKTOFORM()

this is the form... how do I use LINKTOFORM()?

peppemigl_0-1696352239311.png

peppemigl_1-1696352332999.png

 

You should create a new action, let's call it "Add Form" and set "App: Go to another view within this app"

In target write: LINKTOFORM("NameOfTheForm", "Column", "Value"]

where NameOfTheForm is the name of your form and Column and Value are used to set default data. 

 

with this it works, is it possible to also pass data and add it to this new table?

Yes, that's what "Column" and "Value" are used for. 

Let's say you have a column in the form called Name and you want it to be filled with "John" you can use the following formula:

LINKTOFORM("NameOfTheForm", "Name", "John"]

You can also use more columns like this

LINKTOFORM("NameOfTheForm", "Name", "John", "Age", "30"] and so on

You can also use data from the table you call the action from:

LINKTOFORM("NameOfTheForm", "Name", [_thisrow].[Name])

 

great...thanks so much for the help๐Ÿ˜Š

Top Labels in this Space