Hello, my airtable is used within data within a project management platform I built in sotfr. my client portal users enter data via a softr modal which lands into the airtable and a softr table view that displays the entered data. I need each entries of by user to be auto-numbered from 1 to whatever the final entry is.
For example if the data represented a christmas wishlist, and little bobby entered a “toy truck”, “building blocks”, and “book”, I need the list to show:
- toy truck
- Building blocks
- book
And if little tommy entered “Basketball”, “ipod”, and “ball cap” the list should be
- basketball
- ipod
- ballcap
The number needs to be hard coded to the entry, so that when the list is sorted differently the number follows along, for example, if I sort little tommy’s list within the softr presentation layer alphabetically the list should be:
3. Ballcap
1. basketball
2. Ipod
So how do I assure that the user’s entries are getting numbered automatically and the numbering range is limited by the scope of the user’s entries? If I was unclear, all the entries land into the same table so this data may look like this:
# | user | gift |
1 | Bobby | Toy Truck |
2 | Bobby | building block |
3 | Bobby | book |
1 | Tommy | basketball |
2 | Tommy | ipod |
3 | Tommy | ball cap |
Note, this is not my actual application, but the christmas wishlist is a super simplified example for what I actually need.