Hello Everyone,
Sorry, I'm new to development and PowerApps and have a question for the community.
I'm currently, working on an app for our company in which form entries are automatically collected and stored in a Sharepoint list. Each entry has a unique identifier column and for any new entry we would like to collect the previous entry for that unique identifier.
For Example:
User1@contoso.com submits an entry for vehicle VIN (Unique Identifier) and then opens the form later on to submit another entry for that same VIN.
User2@contoso.com submits an entry for vehicle VIN (Unique Identifier) and then opens the form once again to submit another entry for the same VIN.
| Date | Email | VIN (Unique Identifier) | Starting Mileage |
| 08/03/20 | user1@contoso.com | XXXX123 | 45,000 |
| 08/03/20 | user2@contoso.com | XXXX432 | 58,000 |
| 08/04/20 | user1@contoso.com | XXXX123 | 45,050 |
| 08/04/20 | user2@contoso.com | XXXX432 | 68,200 |
Is it possible to for PowerApps Form entry to automatically pull the previous information for that VIN (Unique Identifier).
For example:
New Form Entry:
| Date | Blank |
| Email | Blank |
| Vehicle VIN (Unique Identifier) | Select |
| Starting Mileage: | If the above VIN is selected, look at the last entry submitted for that VIN and display value here. |
| | |
Is this possible?
Thank you,