warpathmechanic
Registered User.
- Local time
- Today, 02:48
- Joined
- Aug 30, 2011
- Messages
- 11
Hello,
I have used Hyperion (Brio) to query a databse for several pieces of information. After exporting those to a .csv format and importing them to an access 2007 table I have the following issue:
The "Owner" field is formatted as
Last/First/Middleinitial
Yes this includes the forward slashes. I have written this string so far:
Expr3: Mid([Owner],InStr([Owner],"/")+1) & " " & Left([Owner],InStr([Owner],"/")-1)
Which gets me something that looks like this
John/R Patton
What do I need to add to this string to make it so it appear like this?:
John R. Patton
I have used Hyperion (Brio) to query a databse for several pieces of information. After exporting those to a .csv format and importing them to an access 2007 table I have the following issue:
The "Owner" field is formatted as
Last/First/Middleinitial
Yes this includes the forward slashes. I have written this string so far:
Expr3: Mid([Owner],InStr([Owner],"/")+1) & " " & Left([Owner],InStr([Owner],"/")-1)
Which gets me something that looks like this
John/R Patton
What do I need to add to this string to make it so it appear like this?:
John R. Patton