Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Replace leading comma?

Status
Not open for further replies.

MottoK

Technical User
Oct 18, 2006
73
GB

Hi,

This should be simple but I'm having difficulties.

I have a simple update query with a text field in it, I want to add a little VBA so that if the field (called [Product]) contains text that begins with a comma "," then it will remove that comma and only that comma, completely.

Thanks.

E.G. I want the following string:

,Product1, Product2, Product3

to look like this:

Product1, Product2, Product3
 
Code:
Dim strText As String

strText = ",Product1, Product2, Product3"

If Left$(strText, 1) = "," Then
    strText = Mid(strText, 2)
End If

Debug.Print strText


Have fun.

---- Andy
 
SQL code:
UPDATE yourTable
SET Product=Mid([Product],2)
WHERE Product Like ',*'

Anyway, having a comma separated list in a field seems strange to me.
Have a look here:
Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Excellent - working great now, many thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top