+ Reply to Thread
Results 1 to 23 of 23

How to create salutation in Excel spreadsheet ???? :(

Hybrid View

  1. #1
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Question How to create salutation in Excel spreadsheet ???? :(

    Hi guys, I have long list of names (about 5000), I would like to create a salutation column. I want the salutation result in the fourth column of my spreadsheet. Can someone please advise. Please see my list below. it would be great If the fourth column results like Mr Miller, Mr Lampitt, Pamela, Mr Vucich, Barney, Mr Newman, Naomi etc. I can use concatenate formula to get "Dear" in the front

    Title First Name Surname
    Mr David Miller
    Mr C F Lampitt
    Mrs Pamela Towers
    Mr P J Vucich
    Mr Barney Sowerby
    Mr Thomas P Newman
    Mrs Naomi ****
    Mrs A A Ross
    Mr M Rennie
    Mr A Swney
    Mr Patrick Webby

    Much appreciated.
    Cheers

  2. #2
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    source:
    Title First Name Surname
    Mr David Miller

    result:
    Dear Mr Miller

    D2: =CONCATENATE("Dear"," ",A2," ",C2)

    I assume:
    Title is in A1
    First name is in B1
    Surname is in C1
    Last edited by sandy666; 03-28-2016 at 10:54 PM. Reason: I did vertical involuntarily :)

  3. #3
    Forum Expert
    Join Date
    08-12-2012
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    5,636

    Re: How to create salutation in Excel spreadsheet ???? :(

    so
    Title is in 1 column
    First Name 2nd
    Surname 3rd

    dont you just need to combine
    "Dear" & 1st & 3rd ?
    If you are satisfied with the solution(s) provided, please mark your thread as Solved.
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  4. #4
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    Thanks for this. But sorry I got forgot to include important information that many names don't have a title for which I would prefer just a first name as result. I reckon there is some IF function formula to get these results. the result 2 column is optional, which I can work on them and get the 'result 2' using concatenate formula. But If you know about IF formula to get the 'result 1' column that would be great. cheers

    title firstname surname result 1 result 2
    Mr D Eggers Mr Eggers Dear Mr Eggers
    Linda Belcher Linda Dear Linda
    Ms Dorothy Bogers Ms Bogers Dear Ms Bogers
    Mr Graeme Stewart Mr Stewart Dear Mr Stewart
    Derek Johnston Derek Dear Derek
    Mrs Kerri Major Mrs Major Dear Mrs Major

    Mr & Mrs David & Margaret Cross Mr & Mrs Cross Dear Mr & Mrs Cross

  5. #5
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    =TRIM(IF(A2="",CONCATENATE("Dear"," ",B2),CONCATENATE("Dear"," ",A2," ",C2)))

  6. #6
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    =IF(A2="",CONCATENATE("Dear"," ",C2),CONCATENATE("Dear"," ",A2," ",C2))
    or
    =IF(A2="",C2,CONCATENATE("Dear"," ",A2," ",C2))

    what if no title: D Eggers? should be Dear D ? , Dear Eggers?
    Last edited by sandy666; 03-28-2016 at 11:09 PM.

  7. #7
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    hi that formula works for first row and if drag it to the bottom, your formula result is below.
    title firstname surname result 1
    Mr D Eggers Dear Mr Eggers
    Linda Belcher Dear Belcher
    Ms Dorothy Bogers Dear Ms Bogers
    Jenni Stiles Dear Stiles

    but I want Dear 'Firstname' for those who don't have a title cell content. eg. for Linda Belcher---> I want Dear Linda (not Dear Belcher) & for jenni Stiles--->Dear Jenni (not Dear Stiles) Please let me know if you know!
    but your formula works for the names who have a title.

  8. #8
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    You are welcome

    If problem is resolved, add star and mark thread as solved. Thank you.

  9. #9
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    Thanks for rep

  10. #10
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    OMG..... great... it worked... Thank you heaps.... ) you genius made my day! :-)

  11. #11
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    Btw. If you have: no_title and one_or_two_letter_name, e.g. J Smith (could be John Smith OR Joan Smith) try this:
    Formula: copy to clipboard
    =TRIM(IF(AND(TRIM(A2)="",LEN(TRIM(B2))<=3),CONCATENATE("Dear Sir or Madam"," ",TRIM(C2)),IF(TRIM(A2)="",CONCATENATE("Dear"," ",TRIM(B2)),IF(TRIM(C2)="",CONCATENATE("Dear"," ",TRIM(B2)),CONCATENATE("Dear"," ",TRIM(A2)," ",TRIM(C2))))))
    just for fun
    Last edited by sandy666; 03-29-2016 at 12:19 AM.

  12. #12
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    Hi thanks very much for this. I was about to post this question, as I realised later, that my data had many names with single letter first names and with no title.

    This formula is much more useful, but can you please alter the formula to get Dear supporter for those who don't have title, but have single or double letter first names eg. J Smith or J R Smith or JR Smith (I just want the result - Dear Supporter)

  13. #13
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    Formula: copy to clipboard
    =TRIM(IF(AND(TRIM(A2)="",LEN(TRIM(B2))<=3),"Dear Supporter",IF(AND(TRIM(A2)<>"",LEN(TRIM(B2))<=3),CONCATENATE("Dear"," ",TRIM(A2)," ",TRIM(C2)),IF(TRIM(C2)="",CONCATENATE("Dear"," ",TRIM(B2)),CONCATENATE("Dear"," ",TRIM(B2))))))

  14. #14
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    Something like this?
    Formula: copy to clipboard
    =TRIM(IF(AND(TRIM(A2)="",LEN(TRIM(B2))<=3),"Dear Supporter",IF(TRIM(A2)="",CONCATENATE("Dear"," ",TRIM(B2)),IF(TRIM(C2)="",CONCATENATE("Dear"," ",TRIM(B2)),CONCATENATE("Dear"," ",TRIM(A2)," ",TRIM(C2))))))

  15. #15
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    Yes, thanks This is want I want. I appreciate it
    And just checking if the following option is possible? Can you alter the formula for eg. Mr Jack Smith (I want the result Dear Jack) The above formula you mentioned brings Dear Mr Smith as result.
    I mean if a cell has full first name then its more friendly if we use the salutation Dear Firstname.
    But note: my data has names like J Smith, JR Smith, J R Smith etc
    so eg: J R Smith - Dear Supporter, J Smith - Dear Supporter, Mr Jack Smith - Dear Jack, Mr J Smith - Dear Mr Smith
    Sorry for giving more work to your genius brain!

  16. #16
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    Wow.. Incredible.... You are a rock star! Thanks heapsssss!!!!

  17. #17
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(


    You are welcome.

    Should I get another star?

  18. #18
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    I think I did close this thread and gave you another star before you even asked!

  19. #19
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    And actually it didn't allow me to add another rep, looks like I need to give/spread rep to other people before I give another one to you!

  20. #20
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    I see only one from you but never mind

  21. #21
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    It was joke

  22. #22
    Registered User
    Join Date
    04-14-2015
    Location
    Australia
    MS-Off Ver
    2013
    Posts
    18

    Re: How to create salutation in Excel spreadsheet ???? :(

    Thanks again & have a good rest of the day!

  23. #23
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: How to create salutation in Excel spreadsheet ???? :(

    Thanks, 2U2

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Flip names of salutation
    By bwiebe in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 01-06-2016, 02:25 PM
  2. Salutation
    By cioccracer1 in forum Hello..Introduce yourself
    Replies: 1
    Last Post: 04-22-2013, 01:47 AM
  3. Salutation
    By lardog98 in forum Hello..Introduce yourself
    Replies: 1
    Last Post: 06-17-2012, 03:24 PM
  4. Salutation help
    By NED in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-31-2007, 10:16 AM
  5. [SOLVED] want to ask salutation on a mailing list.
    By lupetunes in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 01-04-2006, 12:35 PM
  6. How can I remove Salutation
    By m_ravindran in forum Excel General
    Replies: 3
    Last Post: 12-09-2005, 10:46 AM
  7. How can I create a formula for Salutation
    By cs_vision in forum Excel General
    Replies: 6
    Last Post: 10-07-2005, 07:31 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1