I am building a Repair App. Each repair has its own unique Repair Number (Separate from Uniqueid), per store by;
MAX(
SELECT( Repair[RepairNumber],
[id_Store].[id] = [_ThisRow].[Store_id])
)+1
The problem I’m facing is I have this app filter out all the “complete” and “canceled” repairs. Which make my Repair Number start over. Is there a way to over come this issue?
Create a column such as RepairNumber, in my Store table.
Create an action so that the RepairNumber updates every time you save a form
Am I correct?
If I am, it doesn’t seem to do the trick because, people will also edit the forms at a later time, and I need to have 2 actions depending on which form you start on (Grandparent of Repair, or Parent of Repair) .
If you’re filtering records out (Security Filters, right?), then that formula will fail the same way that your first formula was failing. I don’t see how this could be the solution to your issue.