Sequential Capital Leter

M

mayreza

How i Print a Sequential capital letter for Each Record to the Detail Section
of a Report
 
S

Stefan Hoffmann

hi,
How i Print a Sequential capital letter for Each Record to the Detail Section
of a Report
When you have a sequence counter use =Chr(Counter+64) as ControlSource.
If you don't have on, you can simply generate one by modifying your
RecordSource of your report. At a column SequenceBase: 1. Create a
running sum control based on that field. Use that control in the first
mentioned function: =Chr(runningSumCtl.Value + 64).



mfG
--> stefan <--
 
M

Marshall Barton

mayreza said:
How i Print a Sequential capital letter for Each Record to the Detail Section
of a Report


First, add a hidden text box (named txtLineNum) to the
detail section, Set its control source expression to =1 and
set its RunningSum property to Over Group.

Then you can use another text box with the expression:
=Chr(Asc("A") -1 + txtLineNum)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top