Matt Allen
Matt Allen

Reputation: 1

Excel Column Equal to Text and Cell

I'm trying to fill a column with an url as the text and column data directly after the slash in the url from another column.

For example i want to input http://xxx.xxx.xxx/ column data goes here

The text would be the url address and right after the slash is where i need the column data to go.

can anyone help me out?

Upvotes: 0

Views: 638

Answers (2)

Simon
Simon

Reputation: 10841

I think you might want to use a formula like this:

=HYPERLINK(CONCATENATE(A2,B2))

... in which case you'd get the following results (given that the links etc. are on row 2 of the spreadsheet):

A                       B   C
http://www.example.com/ xyz http://www.example.com/xyz

With the formula above in cell C2, not only do you have the concatenated link, but the user can click on it to open a browser at the linked page.

Upvotes: 1

Tim
Tim

Reputation: 35943

Try the CONCATENATE function.

=CONCATENATE("http://xxx.xxx.xxx/", A1)

Upvotes: 2

Related Questions