gpt4 book ai didi

sql - 用于组合范围的 Excel 函数或 VBA 脚本

转载 作者:行者123 更新时间:2023-12-04 20:46:06 25 4
gpt4 key购买 nike

我有 2 列,每列都有不同数量的行。在这种情况下,我想将 A1 中的项目与范围(B1:B50)合并(标量倍数?多个矩阵?),然后对 A 列中的每个项目重复。

理想情况下,这两个值将用逗号分隔。 Here's what I'd like to accomplish .

最好的路线是什么?矩阵函数可以用于组合文本吗?

最佳答案

试试这个代码:

Sub sample()

Dim lastRowA As Long, lastRowB As Long, row As Long

lastRowA = Range("A" & Rows.Count).End(xlUp).row
lastRowB = Range("B" & Rows.Count).End(xlUp).row

row = 1
For i = 1 To lastRowA
For j = 1 To lastRowB
Cells(row, 4) = Cells(i, 1)
Cells(row, 5) = Cells(i, 1) & "," & Cells(j, 2)
row = row + 1
Next
Next

End Sub

关于sql - 用于组合范围的 Excel 函数或 VBA 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16472472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com