Hi,
I have a report that currently has six records.
I'd like to have a textbox in the report detail section that shows "record n of 6" I can use count() to get the '6' value but how do I get the 'n' value?
I'm looking for something similar to the
i.e.
Many thanks in advance
Woter
I have a report that currently has six records.
I'd like to have a textbox in the report detail section that shows "record n of 6" I can use count() to get the '6' value but how do I get the 'n' value?
I'm looking for something similar to the
Code:
="page " & Page & " of " & Pages
i.e.
Code:
="Record " & {what goes here?} & " of " & count([someTable.someField])
Many thanks in advance
Woter