Concatenate column with leading space
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Dear All ,
I am stuck at one place in my workflow , please help me with the formula-
Input-
First Name | Middle Name | Last Name |
John | Smith | Carl |
Max | Harley | Dr. |
if Middle Name first character is space we have to concatenate First Name and Middle Name and
if Last Name first character is space we have to concatenate Middle Name and Last Name and get the following output
Output -
First Name | Last Name |
John Smith | Carl |
Max | Harley Dr. |
Many Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Ekta ,
I have mocked up a workflow that answers your question.
Let me know if that works for you. 🙂
Cheers,
Angelos
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Ekta
I use one formula tool to get the output.
Please check if this is what you want, and if you do, kindly mark it as accepted. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Ekta
Seems like there is only one similar generic way to solve this.
Here is my workflow
Input:
Output:
Workflow:
Formula : FirstName
IF Left([Middle Name], 1)=" "
THEN [First Name]+[Middle Name]
ELSE [First Name]
ENDIF
Formula : LastName
IF Left([Last Name], 1)=" "
THEN [Middle Name]+[Last Name]
ELSE [Last Name]
ENDIF
Hope this helps 🙂 give a like if you dont mind 😀👍
