Feb 26, 2008 #1 cabobound Programmer Jul 11, 2007 80 US Im trying to spread a city/state field in two. How do I do this with VBA? n![City] = rst![Optional City/State] Where rst![Optional City/State]="CHICAGO IL"
Im trying to spread a city/state field in two. How do I do this with VBA? n![City] = rst![Optional City/State] Where rst![Optional City/State]="CHICAGO IL"
Feb 26, 2008 1 #2 Bong Programmer Dec 22, 1999 2,063 US <State> = right(<string>,2) <City> = left(<string>,len(<string>)-3) _________________ Bob Rashkin Upvote 0 Downvote
Feb 26, 2008 #3 S SkipVought Programmer Dec 4, 2001 47,492 US Hi, Check out the Data > Text to columns... spreadsheet feature Skip, I'll be dressed to the nines this week, as I go to have my prostatectomy... Because, if I'm gonna BE impotent, I want to LOOK impotent! Upvote 0 Downvote
Hi, Check out the Data > Text to columns... spreadsheet feature Skip, I'll be dressed to the nines this week, as I go to have my prostatectomy... Because, if I'm gonna BE impotent, I want to LOOK impotent!
Feb 26, 2008 #4 S SkipVought Programmer Dec 4, 2001 47,492 US ..or Rightstring, 2), Left(string, len(string)-3) Skip, I'll be dressed to the nines this week, as I go to have my prostatectomy... Because, if I'm gonna BE impotent, I want to LOOK impotent! Upvote 0 Downvote
..or Rightstring, 2), Left(string, len(string)-3) Skip, I'll be dressed to the nines this week, as I go to have my prostatectomy... Because, if I'm gonna BE impotent, I want to LOOK impotent!
Feb 26, 2008 #5 S SkipVought Programmer Dec 4, 2001 47,492 US ..or Right(string, 2), Left(string, len(string)-3) Skip, I'll be dressed to the nines this week, as I go to have my prostatectomy... Because, if I'm gonna BE impotent, I want to LOOK impotent! Upvote 0 Downvote
..or Right(string, 2), Left(string, len(string)-3) Skip, I'll be dressed to the nines this week, as I go to have my prostatectomy... Because, if I'm gonna BE impotent, I want to LOOK impotent!
Feb 26, 2008 Thread starter #6 cabobound Programmer Jul 11, 2007 80 US Thanks for the hit Bong LOL Upvote 0 Downvote