D dcavaiani Registered User. Local time Today, 15:33 Joined May 26, 2014 Messages 385 Apr 10, 2020 #1 “John and Mary Jones” s/b “Jones John” “Jim & Bob & Mary Jones” s/b “Jones Jim”
D dcavaiani Registered User. Local time Today, 15:33 Joined May 26, 2014 Messages 385 Apr 10, 2020 #2 dcavaiani said: “John and Mary Jones” s/b “Jones John” “Jim & Bob & Mary Jones” s/b “Jones Jim” Click to expand... This is in a sql insert
dcavaiani said: “John and Mary Jones” s/b “Jones John” “Jim & Bob & Mary Jones” s/b “Jones Jim” Click to expand... This is in a sql insert
June7 AWF VIP Local time Today, 12:33 Joined Mar 9, 2014 Messages 5,944 Apr 10, 2020 #3 Right(x, InStr(x, " ")) & " " & Left(x, InStr(x, " "))
arnelgp ..forever waiting... waiting for jellybean! Local time Tomorrow, 04:33 Joined May 7, 2009 Messages 20,248 Apr 10, 2020 #4 Mid([FieldName], InstrRev([FieldName], " ") + 1) & " " & Left([FieldName], Instr([FieldName], " ") - 1)
Mid([FieldName], InstrRev([FieldName], " ") + 1) & " " & Left([FieldName], Instr([FieldName], " ") - 1)
P plog Banishment Pending Local time Today, 15:33 Joined May 11, 2011 Messages 11,972 Apr 10, 2020 #5 James Van Der Beek Oscar De La Hoya You ok with those being these: Beek James Hoya Oscar
D dcavaiani Registered User. Local time Today, 15:33 Joined May 26, 2014 Messages 385 Apr 10, 2020 #6 June7 said: Right(x, InStr(x, " ")) & " " & Left(x, InStr(x, " ")) Click to expand... I thought for sure I tried that and ran into a failure when testing? I will try again tomorrow.
June7 said: Right(x, InStr(x, " ")) & " " & Left(x, InStr(x, " ")) Click to expand... I thought for sure I tried that and ran into a failure when testing? I will try again tomorrow.
D dcavaiani Registered User. Local time Today, 15:33 Joined May 26, 2014 Messages 385 Apr 10, 2020 #7 plog said: James Van Der Beek Oscar De La Hoya You ok with those being these: Beek James Hoya Oscar Click to expand... I see that complicates it more ...
plog said: James Van Der Beek Oscar De La Hoya You ok with those being these: Beek James Hoya Oscar Click to expand... I see that complicates it more ...
D dcavaiani Registered User. Local time Today, 15:33 Joined May 26, 2014 Messages 385 Apr 10, 2020 #8 dcavaiani said: I see that complicates it more ... Click to expand...
June7 AWF VIP Local time Today, 12:33 Joined Mar 9, 2014 Messages 5,944 Apr 10, 2020 #9 Consistency in structure is critical with string manipulation. Names are far from being consistent in structure. This is why name parts should be saved into separate fields.
Consistency in structure is critical with string manipulation. Names are far from being consistent in structure. This is why name parts should be saved into separate fields.
D dcavaiani Registered User. Local time Today, 15:33 Joined May 26, 2014 Messages 385 Apr 10, 2020 #10 arnelgp said: Mid([FieldName], InstrRev([FieldName], " ") + 1) & " " & Left([FieldName], Instr([FieldName], " ") - 1) Click to expand... This one did it !!
arnelgp said: Mid([FieldName], InstrRev([FieldName], " ") + 1) & " " & Left([FieldName], Instr([FieldName], " ") - 1) Click to expand... This one did it !!