Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
rdenny1900
 
Posts: n/a
Default HELP! Brand new user to excel and having problems...


Hi there. Brand new to the board and I am trying to find the answer to a
question. I need some serious help here from a total beginner to excel.
I have never used functions.

I have a list of 500 domain names that are listed in the first column
in excel. In the second column I have more text. In the Third column I
am trying to have the text of the first and second column inserted into
a phrase in the second column. Example:

Lets say this is in column 1:
COLUMN1TEXT

This is in Column 2:
COLUMN2TEXT

This is what I want in column 3:
<a href="http://COLUMN1TEXT" target="_blank"
title="COLUMN2TEXT"COLUMN1TEXT</a<br

Does anyone know how in the world to do this? Do I need to create a
function to do this? I would really appreciate any help anyone can give
me!! Thanks, Ron


--
rdenny1900


------------------------------------------------------------------------
rdenny1900's Profile: http://www.excelforum.com/member.php...o&userid=24435
View this thread: http://www.excelforum.com/showthread...hreadid=380372

  #2   Report Post  
Max
 
Posts: n/a
Default

Not sure, but see whether this helps a bit ..
(we're just concatenating the bits together)

Put in C1:
="<a href=http://"&A1&" target="&"_ "&" title="&B1&""&A1&"</a<br"
Copy down

If col C returns what you want, then you could freeze the values in the col
via
an in-place copy paste special values ok
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----
"rdenny1900" wrote
in message ...

Hi there. Brand new to the board and I am trying to find the answer to a
question. I need some serious help here from a total beginner to excel.
I have never used functions.

I have a list of 500 domain names that are listed in the first column
in excel. In the second column I have more text. In the Third column I
am trying to have the text of the first and second column inserted into
a phrase in the second column. Example:

Lets say this is in column 1:
COLUMN1TEXT

This is in Column 2:
COLUMN2TEXT

This is what I want in column 3:
<a href="http://COLUMN1TEXT" target="_blank"
title="COLUMN2TEXT"COLUMN1TEXT</a<br

Does anyone know how in the world to do this? Do I need to create a
function to do this? I would really appreciate any help anyone can give
me!! Thanks, Ron


--
rdenny1900


------------------------------------------------------------------------
rdenny1900's Profile:

http://www.excelforum.com/member.php...o&userid=24435
View this thread: http://www.excelforum.com/showthread...hreadid=380372



  #3   Report Post  
rdenny1900
 
Posts: n/a
Default


Wow, what a quick reply......and thank you!!

Ok, I am starting to get excited because its kind of working.

When I put in this forumula:

="<a href=http://"&A1&" target="&"_ "&" title="&B1&""&A1&"</a<br"

In column 3 I get:

<a href=http://ABORTIONLA.WS target=_ title=ABORTION
LAWSABORTIONLA.WS </a<br

Theres a couple of problems. First is that I need it to say:

<a href="http://ABORTIONLA.WS" target="_blank" title="ABORTION
LAWS"ABORTIONLA.WS </a<br

So pretty much its missing the quotation marks. Thats not the big
issue because I can fix that stuff later with replace command.

The big issue is that when I paste the formula in column 3 after the
first line, (example: Line 2, Line 3, Line 4, etc...) it keeps giving
me the values from LINE 1 (column 1 and 2). I see that the variables
A1 and B1 keep getting used but I guess I need the values from each
individual line to corrospond to that line. Like for line two I guess
the variables need to say A2 and B2. I am not sure how to do that tho
and typing in the new values in the formula are just not feasable. I
am sure I am just doing something stupid because I have never used this
program before, but cant get it to work.

Honestly, I cant believe I got it working this much!!

Thank you so much for all your help!
Ron


--
rdenny1900


------------------------------------------------------------------------
rdenny1900's Profile: http://www.excelforum.com/member.php...o&userid=24435
View this thread: http://www.excelforum.com/showthread...hreadid=380372

  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default

"rdenny1900" wrote
in message ...

Wow, what a quick reply......and thank you!!


Fast! It took Max 1 and a half hours <vbg

Theres a couple of problems. First is that I need it to say:

<a href="http://ABORTIONLA.WS" target="_blank" title="ABORTION
LAWS"ABORTIONLA.WS </a<br

So pretty much its missing the quotation marks. Thats not the big
issue because I can fix that stuff later with replace command.


="<a href=http://"""&A1&""" target="&"_ "&" title="""&B1&""""&A1&"</a<br"

The big issue is that when I paste the formula in column 3 after the
first line, (example: Line 2, Line 3, Line 4, etc...) it keeps giving
me the values from LINE 1 (column 1 and 2). I see that the variables
A1 and B1 keep getting used but I guess I need the values from each
individual line to corrospond to that line. Like for line two I guess
the variables need to say A2 and B2. I am not sure how to do that tho
and typing in the new values in the formula are just not feasable. I
am sure I am just doing something stupid because I have never used this
program before, but cant get it to work.


If you put it into C1 say, then copy and paste into C2 and you should see it
update automatically. I do


  #5   Report Post  
Greg
 
Posts: n/a
Default

"Max" wrote:

Not sure, but see whether this helps a bit ..
(we're just concatenating the bits together)

Put in C1:
="<a href=http://"&A1&" target="&"_ "&" title="&B1&""&A1&"</a<br"
Copy down



Not quite.

I know exactly what original poster is trying to do. I do it all the
time. You need to use the char(34) function to generate the quotation
marks that are required in the URL.

This has been tested and should work fine:

="<a href="&CHAR(34)&"http://"&A1&CHAR(34)&"
target="&CHAR(34)&"_blank"&CHAR(34)&"
title="&CHAR(34)&B1&CHAR(34)&""&A1&"</a<br"

rdenny, you need to make sure that all of this goes in as one line in
cell C1.

Once you have C1 working properly, select the cell (not all the text
in the formula, but the entire cell itself) and copy. Then select
cells C2 through whatever the last line is, and paste. The references
to A1 and B1 will update automatically.


--
Greg
phobos78-marslink-net
Replace dashes and move in by 1 planet to reply.


  #6   Report Post  
Max
 
Posts: n/a
Default

Thanks for the follow through, Bob ! Between your response and that posted
by Greg in the other branch, believe the OP would have got it working by now
...

Fast! It took Max 1 and a half hours <vbg

Ah, was having dinner and washing up over here
when the post came through <bg
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 02:10 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"