Hello
I am making a booking app, and to speed things up for the user I would like to have default values for car parking.
I want the value for the Make and Model datacard, let's call it DataCardValue2, to default to that of the last entry by the current user.
The current user is in ComboBox1, its default is
{
DisplayName:User().FullName,
Claims:"i:0#.f|membership|" & Lower(User().Email),
Department:"",
Email:User().Email,
JobTitle:"",
Picture:""
}
Something that prepopulates the default, or places the last entry by that user in a little box under the input like in many online forms.
Any help would be appreciated
Conn