Adding serial numbers for different products

I have a form set up and i want a sequential numbering formula to make sure the following happens.
17/12 /2021 - Product A - A00001
17/12 /2021 - Product B - B00001
18/12 /2021 - Product A - A00002
19/12 /2021 - Product A - A00003
20/12 /2021 - Product B - B00002

Solved Solved
0 5 251
1 ACCEPTED SOLUTION

COUNT(
  FILTER(
    "YOURTABLE",
    [PRODUCTNAMECOLUMN]=[_THISROW].[PRODUCTNAMECOLUMN]
  )
)+1

Put this instead of the MAX()

View solution in original post

5 REPLIES 5
Top Labels in this Space