Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a database of people, that when you search for one, it finds the
person and displays the info. I wish to be able to add a "return" (next line) for each note in the note text box. How do I do this? Ex. CustInfo.Notes = Worksheets("CustomerDatabase").Cells(RefCountx, 30) & NEXTLINE??? & Worksheets("CustomerDatabase").Cells(RefCountx, 31) thanks Ahead of time, Thomas |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Thomas
Try VbNewLine HTH. Best wishes Harald "thomas" skrev i melding ... I have a database of people, that when you search for one, it finds the person and displays the info. I wish to be able to add a "return" (next line) for each note in the note text box. How do I do this? Ex. CustInfo.Notes = Worksheets("CustomerDatabase").Cells(RefCountx, 30) & NEXTLINE??? & Worksheets("CustomerDatabase").Cells(RefCountx, 31) thanks Ahead of time, Thomas |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
chr(10)
CustInfo.Notes = Worksheets("CustomerDatabase").Cells(RefCountx, 30) & _ chr(10) & Worksheets("CustomerDatabase").Cells(RefCountx, 31) -- Regards, Tom Ogilvy "thomas" wrote in message ... I have a database of people, that when you search for one, it finds the person and displays the info. I wish to be able to add a "return" (next line) for each note in the note text box. How do I do this? Ex. CustInfo.Notes = Worksheets("CustomerDatabase").Cells(RefCountx, 30) & NEXTLINE??? & Worksheets("CustomerDatabase").Cells(RefCountx, 31) thanks Ahead of time, Thomas |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Your cool! Still learning the in's and out's of VB
-thomas "Harald Staff" wrote: Hi Thomas Try VbNewLine HTH. Best wishes Harald "thomas" skrev i melding ... I have a database of people, that when you search for one, it finds the person and displays the info. I wish to be able to add a "return" (next line) for each note in the note text box. How do I do this? Ex. CustInfo.Notes = Worksheets("CustomerDatabase").Cells(RefCountx, 30) & NEXTLINE??? & Worksheets("CustomerDatabase").Cells(RefCountx, 31) thanks Ahead of time, Thomas |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Jump to new line after the first record is displayed | Excel Programming | |||
Jump to new line after the first record is displayed | Excel Programming | |||
Jump to new line after the first record is displayed | Excel Programming | |||
Jump to new line after the first record is displayed | Excel Programming | |||
Jump to new line after the first record is displayed | Excel Programming |