Hi,
I have a list of names that I want to concatenate them with a seperator (comma) (please see below), constrained to following criteria
1- Remove all dots spaces from middle initial
2-If there is no middle initial, it should look like Adam, Thomas not Adam, Thomas, ---> No comma at the end
3-Same procedure applies to first Name . If there is no FIrst Name, just include last name with no comma
Expect outcome should look like below. Not sure If i can do it with formula function by using if else (or something else) statement. Any help is appreciated
| First Name | Last Name | Middle Initial | Output |
| Tom | Jack | D.R | Tom,Jack,DR |
| Skura | Daniel | | Skura,Daniel |
| Tim | Treak | F | Tim,Treak |
| Tim | Howard | | Tim,Howard |
| | Simmons | | Simmons |