I'm working on a userform that completes a correspondence template. I have two fields: References and Enclosures that need to show up on the completed template like this (underscores are spaces):
Ref:____(a) Reference 1
_______ (b) Reference 2
Encl:___(1) Enclosure 1
________(2) Enclosure 2
I can't figure out how to start an aligned autonumbered list to the right of those labels (Ref: & Encl:). I don't have code that works to provide here because I got frustrated and scrapped everything, but all solutions I've tried have resulted in something that looks like this:
(a) Ref: Reference 1
(b) Reference 2
Anything that can get me started in the right direction will be appreciated. Thanks
FWIW I think the suggestion by @TimothyRylatt is by far and away the most reliable way to approach this problem, but (a) there are alternatives, and (b) how useful any approach is depends on what you want to do with the resulting document. If you only need to be able to print or PDF the correspondence (i.e. no-one needs to edit the document you create), frankly, you can avoid autonumbering altogether and use VBA to generate the correct letter for each row in your output.
If you need a user to be able to resequence your Refs and Encls, for example, they are almost always going to have to deal with the problem that the first item in a list is going to be different from subsequent items.
But perhaps have a go with this, which uses a combination (unusual, I suspect) of a multilevel list format and
{ LISTNUM }fields. You would need to choose values for the constant names, and modify the paragraph, tab and other formatting as appropriate for your output. ModifySub addtexts()to genertae the lists you need, and call it.Notes...
Autonumbering lets you put text before your (a), but then you would have to define a multilevel scheme where one level had "Ref:", another did not, an apply the correct levels or paragraph styles. But the problem with that is that it's very hard to get the alignment right. If users need to modify the results, { LISTNUM } has an advantage over { SEQ } fields in that LISTNUM values are updated automatically, but a disadvantage in that they are tied to Word's labyrinthine list structures.