I have been using formula that create a new 'Tracker ID' based on the following criteria:
- If the current item already has a 'Tracker ID' value, that value is used.
- If not, it generates a new 'Tracker ID' by combining the current month and year with a count of valid records in the 'Issue Tracker', incremented by 1.
If(ThisItem.'Tracker ID'<>Blank(),ThisItem.'Tracker ID',Month(Now())&"/"&Year(Now())&"/"&Sum(CountIf('Issue Tracker',ThisItem.ID<>0),1))
Now, I want to reset the sequence number to 1 when new months starts. Please guide.

Report
All responses (
Answers (