I would like to create an outline type numbering system in my crystal report with the following format:
-
text
a. text
b. text
-
text
a.text
b.text
c. text
etc . I can generate 1,2,3 where I am using a,b c. Is there a crystal formula for converting 1 to a, 2 to b, etc or do I have to write one?
You’d use the crystal function
chrwto convert int to char and an ascii table. (hint: a = 97)or convert “a” to unicode with
ascwand count up…