Excel自动编号网址

时间:2016-04-01 05:22:00

标签: excel excel-formula

我正在尝试制作一个excel公式来自动编号网址。

现在我有两列,一列有最大数字,一列有基本网址。

有1050行。

基本上,我想为每一行生成0到最大数字之间的总列数。在这些列中,我希望附加当前列号的URL

示例:

最大数量= 10,url = thing.com /

这将导致thing.com/0 | thing.com/1 | thing.com/2等等。

我能做到这一点吗?

1 个答案:

答案 0 :(得分:0)

请在具有范围选择的任何单元格中使用以下函数作为公式。

Public Function getcontent(r As Range) As String
    Dim out As String
    For i = 1 To r.Cells.Count
        If out <> "" Then out = out & "|thing.com/" & r.Cells(i, 1) Else out = "thing.com/" & r.Cells(i, 1)
    Next i
    getcontent = out
End Function

enter image description here