Mar 18, 2005 #1 dv8er88 Programmer Feb 21, 2005 42 US I am looping and biulding a var seperated by commas. But i need to remove the last comma. Thanks
Mar 18, 2005 1 #2 r937 Technical User Jun 30, 2002 8,847 CA left(string,length(string)-1) rudy | r937.com | Ask the Expert | Premium SQL Articles SQL for Database-Driven Web Sites (next course starts May 8 2005) Upvote 0 Downvote
left(string,length(string)-1) rudy | r937.com | Ask the Expert | Premium SQL Articles SQL for Database-Driven Web Sites (next course starts May 8 2005)
Mar 18, 2005 #3 r937 Technical User Jun 30, 2002 8,847 CA ooops, my bad left(string,len(string)-1) rudy | r937.com | Ask the Expert | Premium SQL Articles SQL for Database-Driven Web Sites (next course starts May 8 2005) Upvote 0 Downvote
ooops, my bad left(string,len(string)-1) rudy | r937.com | Ask the Expert | Premium SQL Articles SQL for Database-Driven Web Sites (next course starts May 8 2005)
Mar 18, 2005 Thread starter #4 dv8er88 Programmer Feb 21, 2005 42 US Thanks that works great. I assume the (string) determins the length of the current var in the loop and the trims 1 char. Upvote 0 Downvote
Thanks that works great. I assume the (string) determins the length of the current var in the loop and the trims 1 char.