Is there a way to get a form to auto-post? If...

Is there a way to get a form to auto-post? If not is there another way to click once and

add a new row to a table with set parameters?

0 2 328
2 REPLIES 2

Can you elaborate?

If the new row is basically a copy of an existing row, you could use an action using the LINKTOFORM(), linking to a FORM viewโ€ฆ

You can then specify using text, or column references, what you want each

column to contain. Then save this new record.

E.g.

LINKTOFORM(โ€œSales_Formโ€, โ€œSalesโ€,[SalesID],โ€œSales.ItemNumberโ€, [Sales.ItemNumber], โ€œSales.PrivateOrBusinessโ€, [Sales.PrivateOrBusiness],โ€œCopyOROriginalโ€,โ€œCopyโ€)

So this links to a FORM view called โ€œSales_Formโ€, and places the SalesID value in the โ€œSalesโ€ column, places the sales item number and private or business selections into the relevant columns, and adds the word โ€œCopyโ€ into the CopyOrOriginal column.

Hope that helps?

Top Labels in this Space