简体   繁体   中英

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?

尝试CONCATENATE函数。

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM