I have three columns that I want to draw data from combine it into a single
line of data in another columns. So here’s the scenario.
Column 1 has an employee # there’s two designations 01XXXX and 02XXXX.
This is important. More on the importance of that later.
Column 2 has First name
Column 3 has Last name pretty simple.
So basically what I need to happen is, what I believe to be a simple
combination / complex if statement.
The Final column would look like this. jeremy.ries@horizonair.com
That’s why 01xxxx and 02xxxx are so important 01 means alaskaair.com 02 mean
horizonair.com
Help!
-jeremy-
drummer07@hotmail.com
Jeremy@jeremyries.net
PCLIVE - 26 Mar 2008 22:25 GMT
=B1&"."&C1&"@"&IF(A1="01XXXX","alaskaair.com","horizonair.com")
If you want the result to be a link:
=HYPERLINK(B1&"."&C1&"@"&IF(A1="01XXXX","alaskaair.com","horizonair.com"))
HTH,
Paul
>I have three columns that I want to draw data from combine it into a single
> line of data in another columns. So here's the scenario.
[quoted text clipped - 20 lines]
> drummer07@hotmail.com
> Jeremy@jeremyries.net
Gary''s Student - 26 Mar 2008 22:31 GMT
In column D:
=HYPERLINK("mailto:" &
B1&"."&C1&"@"&IF(LEFT(A1,2)="01","alaskaair.com","horizonair.com"))

Signature
Gary''s Student - gsnu200775
> I have three columns that I want to draw data from combine it into a single
> line of data in another columns. So here’s the scenario.
[quoted text clipped - 19 lines]
> drummer07@hotmail.com
> Jeremy@jeremyries.net
Mike H - 26 Mar 2008 22:32 GMT
with the data laid out as described in A1, b1 & c1 try this in d1 and drag down
=B1&"."&C1&"@"&IF(LEFT(A1,2)="01","alaskaair","horizonair")
Mike
> I have three columns that I want to draw data from combine it into a single
> line of data in another columns. So here’s the scenario.
[quoted text clipped - 19 lines]
> drummer07@hotmail.com
> Jeremy@jeremyries.net
Jim Thomlinson - 26 Mar 2008 22:32 GMT
something like this should do with data in cells a2, b2 and c2...
=B2& "." & C2 & IF(LEFT(A2, 2) = "01", "@alaskaair.com", "@horizonair.com")

Signature
HTH...
Jim Thomlinson
> I have three columns that I want to draw data from combine it into a single
> line of data in another columns. So here’s the scenario.
[quoted text clipped - 19 lines]
> drummer07@hotmail.com
> Jeremy@jeremyries.net
FSt1 - 26 Mar 2008 22:35 GMT
hi
play with this.....
=IF(LEFT(A2,2)="01",B2&C2&"@"&"alaskaair.com",B2&C2&"@"&"horizon.com")
regards
FSt1
> I have three columns that I want to draw data from combine it into a single
> line of data in another columns. So here’s the scenario.
[quoted text clipped - 19 lines]
> drummer07@hotmail.com
> Jeremy@jeremyries.net
drummer07 - 26 Mar 2008 22:48 GMT
YOU GUYS ROCK! THANKS! EVERYONE OF THOSE ANSWERS WORKED! WHAT A GREAT
COMMUNITY!
> hi
> play with this.....
[quoted text clipped - 26 lines]
> > drummer07@hotmail.com
> > Jeremy@jeremyries.net
FSt1 - 27 Mar 2008 05:19 GMT
cool.
and you know what they say...
more than one way to skin a mamoth.
regards
FSt 1
> YOU GUYS ROCK! THANKS! EVERYONE OF THOSE ANSWERS WORKED! WHAT A GREAT
> COMMUNITY!
[quoted text clipped - 29 lines]
> > > drummer07@hotmail.com
> > > Jeremy@jeremyries.net