Hello all.
I have a PowerApp that allows entering inspection data into a SharePoint list (each row is an inspection).
I want to automatically generate an ID that increments every time a new inspection is created in the format FY24/01, FY24/02,...
Is there a way to do so without using SharePoint ID?
I have tried the below formulas but it is linked to the ID and I want to avoid using it as I can't reset it and there will be some gaps.
If(
Form1.Mode = FormMode.New,
Last('Data Source').ID + 1, // Generate an ID value when you add a new record using the app
ThisItem.ID
)
I appreciate your help.