Mar 12, 2005 #1 EZLI IS-IT--Management Sep 3, 2002 31 LV Hi, I have on Form three Fields: Field1 Value *123456*72.47* I need to split that value following to: Field2 Value 123456 Field3 Value 72.47 Can somebody help. Thank's in advance
Hi, I have on Form three Fields: Field1 Value *123456*72.47* I need to split that value following to: Field2 Value 123456 Field3 Value 72.47 Can somebody help. Thank's in advance
Mar 12, 2005 #2 VBslammer Programmer Aug 12, 2002 1,367 US Use the Split() function: Code: Dim vals As Variant vals = Split(Me!Field1, "*") Me!Field2 = vals(1) Me!Field3 = vals(2) VBSlammer "You just have to know which screws to turn." - Professor Bob Upvote 0 Downvote
Use the Split() function: Code: Dim vals As Variant vals = Split(Me!Field1, "*") Me!Field2 = vals(1) Me!Field3 = vals(2) VBSlammer "You just have to know which screws to turn." - Professor Bob
Mar 12, 2005 Thread starter #3 EZLI IS-IT--Management Sep 3, 2002 31 LV Thank You VBslammer! It's working. Upvote 0 Downvote