Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Excel MVPs:
So this is another question about figuring out emails. I have first name in column A, Middle Initial in Column B, and Last Name in Column C, and Domain in Column D. I need a formula that gives A.B.C@D If there is a middle initial, and A.C@D if there isnt one. Thanks again. Reece |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Put this in Cell D1:
=IF(ISBLANK(B1),A1&C1,A1&B1&C1) Add & " " & between Cells if you want spaces HTH Die_Another_Day wrote: Excel MVPs: So this is another question about figuring out emails. I have first name in column A, Middle Initial in Column B, and Last Name in Column C, and Domain in Column D. I need a formula that gives A.B.C@D If there is a middle initial, and A.C@D if there isnt one. Thanks again. Reece |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=A1&"."&IF(B1<"",B1&".","")&C1&"@"&D1 HTH, Elkar " wrote: Excel MVPs: So this is another question about figuring out emails. I have first name in column A, Middle Initial in Column B, and Last Name in Column C, and Domain in Column D. I need a formula that gives A.B.C@D If there is a middle initial, and A.C@D if there isnt one. Thanks again. Reece |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Doh! I didn't read it clearly enough sry.
Put this in E1 =IF(ISBLANK(B1),A1&C1&"@"&D1,A1&B1&C1&"@"&D1) Die_Another_Day Die_Another_Day wrote: Put this in Cell D1: =IF(ISBLANK(B1),A1&C1,A1&B1&C1) Add & " " & between Cells if you want spaces HTH Die_Another_Day wrote: Excel MVPs: So this is another question about figuring out emails. I have first name in column A, Middle Initial in Column B, and Last Name in Column C, and Domain in Column D. I need a formula that gives A.B.C@D If there is a middle initial, and A.C@D if there isnt one. Thanks again. Reece |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This assumes your data is in row 1 and that there is always a first
name and a last name: =A1&"."&IF(ISBLANK(B1),"",B1&".")&C1&"."&"@"&D1 wrote: Excel MVPs: So this is another question about figuring out emails. I have first name in column A, Middle Initial in Column B, and Last Name in Column C, and Domain in Column D. I need a formula that gives A.B.C@D If there is a middle initial, and A.C@D if there isnt one. Thanks again. Reece |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF function to blank without getting #value in sum function | Excel Worksheet Functions | |||
Date & Time | New Users to Excel | |||
Hyperlinks using R[1]C[1] and offset function in its cell referenc | Excel Worksheet Functions | |||
Conversion | Excel Worksheet Functions | |||
HOW CAN I GET OFFICE 2003 EXCEL BASIC TO NEST FUNCTIONS LIKE EXCE. | Excel Worksheet Functions |