Auto fill field with data from last form submitted

I would like to prefill a form field with an address from the last submitted form entry. I would like to know what formula to use to get the address text from the previous submission and preferably and example how to use the formula.

Solved Solved
0 3 1,772
1 ACCEPTED SOLUTION

You need to have a โ€œDateTime_Columnโ€ to determine wich data is the last submitted, Then create a virtual column โ€œLast_Itemโ€, and set this FORMULA:
=MAXROW(โ€œYour_Tableโ€, โ€œDateTime_Columnโ€)

In the INITIAL_VALUE of the ADDRESS column, set:
=[Last_Item].[Address]

P.D. Donโ€™t forget to set Initial_Value of DateTime_Column to NOW()

View solution in original post

3 REPLIES 3
Top Labels in this Space