Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I need to iterate/count how many time a record is returned in a loaded table eg. I need this to then create a Key field. Tried a view options without any luck. Any suggestions?
User | Count |
kh1 | 1 |
kh1 | 2 |
kh1 | 3 |
kh2 | 1 |
kh3 | 1 |
kh3 | 2 |
kh4 | 1 |
Thanks
@k_holt69 try this
Load *,
AutoNumber(RecNo(),User) as Count
FROM Table;
@k_holt69 try this
Load *,
AutoNumber(RecNo(),User) as Count
FROM Table;
@k_holt69 you mention a Key field, could you elaborate?
Thanks - Just what I need 🙂