If we use RECNO() we get the record number of the row in the table. Is there an equivalent function which gives us the record number of the current record's entry in the current index/tag?
INDEX ON cField TAG MAIN
Looking for a way to obtain the index ENTRY number for any given RECNO in the table.
Thank you!
Best regards,
Rick C. Hodgin
Code:
RECNO cField
1 ZEBRA
2 HIPPO
3 DOVE
INDEX ON cField TAG MAIN
Code:
ENTRY RECNO cField
1 3 DOVE
2 2 HIPPO
3 1 ZEBRA
Looking for a way to obtain the index ENTRY number for any given RECNO in the table.
Thank you!
Best regards,
Rick C. Hodgin