Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
waxdart23
Starting Member
33 Posts |
Posted - 2010-05-11 : 04:39:28
|
I am trying to write a custom vb function to take a comma separated list and break it out into rowse.g."John,Bill,Mary"would becomeJohnBillMaryI guess I want to replace the comma with VbCrLf and I want to use this in a tool tip for an existing field where I would put something like:=Code.CustomFunction(Fields!names.Value)ThanksPaulThanksP |
|
waxdart23
Starting Member
33 Posts |
Posted - 2010-05-11 : 05:18:47
|
Turns out I didn't need a function I just used the standard replace function to change , to VbCrLf. Duh!ThanksP |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2010-05-11 : 09:02:51
|
quote: Originally posted by waxdart23 Turns out I didn't need a function I just used the standard replace function to change , to VbCrLf. Duh!ThanksP
Thats my favourite way tooI used this type of approach in Crystal ReportsMadhivananFailing to plan is Planning to fail |
|
|
|
|
|