ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Help! Excel Question (https://www.excelbanter.com/excel-discussion-misc-queries/114270-help-excel-question.html)

[email protected]

Help! Excel Question
 
I have two columns of information

Column A is a name and column B is a Text Field..... here is what I
want to be able to do:

Here are two examples:

If coumn A has Jane Doe and column B has T3866 how can I make column C
automatically become *Jane Doe* and column D become *T38666683T*

What I am wanting to do is take a list of names and add a leading and
lagging * and then take the next field add the text in reverse order
and then add a leading and lagging *.

The second example is John Doe 12345 (columns A and B) - I would want
columns C and D to be *John Doe* *1234554321*.

Is this doable? How?
Thanks in advance for any help!


Bill Ridgeway

Help! Excel Question
 
I wonder why you have chosen to do this and whether there may be a better
way of achieving your objective. Sometimes it's better to express a problem
in terms of what you're ultimately trying to achieve instead of how you
perceive a solution.

Regards.

Bill Ridgeway
Computer Solutions

wrote in message
oups.com...
I have two columns of information

Column A is a name and column B is a Text Field..... here is what I
want to be able to do:

Here are two examples:

If coumn A has Jane Doe and column B has T3866 how can I make column C
automatically become *Jane Doe* and column D become *T38666683T*

What I am wanting to do is take a list of names and add a leading and
lagging * and then take the next field add the text in reverse order
and then add a leading and lagging *.

The second example is John Doe 12345 (columns A and B) - I would want
columns C and D to be *John Doe* *1234554321*.

Is this doable? How?
Thanks in advance for any help!




Don Guillett

Help! Excel Question
 
why another column
for each c in selection
c.value= "*" & c & "*"
next c

--
Don Guillett
SalesAid Software

wrote in message
oups.com...
I have two columns of information

Column A is a name and column B is a Text Field..... here is what I
want to be able to do:

Here are two examples:

If coumn A has Jane Doe and column B has T3866 how can I make column C
automatically become *Jane Doe* and column D become *T38666683T*

What I am wanting to do is take a list of names and add a leading and
lagging * and then take the next field add the text in reverse order
and then add a leading and lagging *.

The second example is John Doe 12345 (columns A and B) - I would want
columns C and D to be *John Doe* *1234554321*.

Is this doable? How?
Thanks in advance for any help!




Carim

Help! Excel Question
 
Hi Bill,


1. ="*"&A1&"*"
2.
="*"&B1&RIGHT(B1,1)&MID(B1,4,1)&MID(B1,3,1)&MID(B1 ,2,1)&LEFT(B1,1)&"*"

HTH
Cheers
Carim


Gord Dibben

Help! Excel Question
 
Another method close to Carim's but with a UDF

="*"& A1&"*" in C1

="*"&B1 & revstr(B1)&"*" in D1

Drop this UDF into your workbook into a general module.

Public Function RevStr(rng As Range)
RevStr = StrReverse(rng.text)
End Function


Gord Dibben MS Excel MVP


On 13 Oct 2006 07:05:33 -0700, wrote:

I have two columns of information

Column A is a name and column B is a Text Field..... here is what I
want to be able to do:

Here are two examples:

If coumn A has Jane Doe and column B has T3866 how can I make column C
automatically become *Jane Doe* and column D become *T38666683T*

What I am wanting to do is take a list of names and add a leading and
lagging * and then take the next field add the text in reverse order
and then add a leading and lagging *.

The second example is John Doe 12345 (columns A and B) - I would want
columns C and D to be *John Doe* *1234554321*.

Is this doable? How?
Thanks in advance for any help!



[email protected]

Help! Excel Question
 
Thanks! Worked like a charm! You guys are great!'

Lee


Carim wrote:
Hi Bill,


1. ="*"&A1&"*"
2.
="*"&B1&RIGHT(B1,1)&MID(B1,4,1)&MID(B1,3,1)&MID(B1 ,2,1)&LEFT(B1,1)&"*"

HTH
Cheers
Carim




All times are GMT +1. The time now is 05:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com