<Ctrl>Enter starts a new line
I need it to be auto formated as I have 150+ observations on my table. Any ideas?
What does "auto formatted" mean? Why are you using a label control, wouldn't a ListBox work better for you?
IF you are appending observations into one long string as the label caption, do this:
The vbcrlf will cause a new line.Code:dim sLabelString as string sLabelString = obs1 & vbcrlf _ & obs2 & vbcrlf _ & obs3 & vbcrlf _ . . & obs9 & vbcrlf mylabel.caption = sLabelString