Default last entry on certain data fields

Hi!

I have an app to capture the characteristics of every light fitting in a building. My first 3 fields to collect data are: Inside or Outside?, Building level, Room. If there are 40 lights in that room it would be nice to not have to fill these 3 questions out for every light.

Is there a way that my app can default to the last entry answer for these particular fields? I looked at the initial value expression but this seems to stop working once you change the response.

 

0 5 108
5 REPLIES 5

Something like this with the Initial value for the Room column..
LOOKUP(MAXROW("Table","_ROWNUMBER"),Table,KeyColumn,Room)

Hi Aleksi,

Sorry, I'm not great at understanding formulas. Could you please explain what this formula is instructing? 

First the MAXROW() finds the latest record based on the rownumber from your table. The result is that rows key value. The LOOKUP() then finds that row with the key value as it's unique, and read your room value from that row.

Room is not my "key" column. Does that mean I have to make it one?

No. The result from the MAXROW() is always the value from the key column.

Top Labels in this Space