gpt4 book ai didi

excel - 在表列中查找值并返回表行号 - VBA

转载 作者:行者123 更新时间:2023-12-04 22:18:39 25 4
gpt4 key购买 nike

背景资料:
我试图在 Table 列中找到一个值,并让它返回该表的行号。
表名为“Type_K”,位于“DATA”表中,如下所示:
enter image description here
从用户输入中,我想在第二列中找到相同的值,然后返回表格行。这将用于“管道成本计算”表。
这是用户填写的表格:
enter image description here
Material 列有一个包含 4 个选项的下拉列表,根据输入,Type 列会更改其下拉列表,Wall 和 Size 列也是如此。
对于此示例,用户选择了:
Material = 铜
类型 = K 型
墙(在这种情况下不适用)
尺寸 = 1/4"
Size 列的值是我想在 DATA 表中找到的值(第一张图像的第二列)
目前代码检查类型是什么并返回正确的表名

If Worksheets("Pipe Costing").Range("D" & ThisRow).Value = "Type K" Then
Copper_Type_ref = "Type_K"
ElseIf Worksheets("Pipe Costing").Range("D" & ThisRow).Value = "Type L" Then
Copper_Type_ref = "Type_L"
ElseIf Worksheets("Pipe Costing").Range("D" & ThisRow).Value = "Type M" Then
Copper_Type_ref = "Type_M"
ElseIf Worksheets("Pipe Costing").Range("D" & ThisRow).Value = "Type DWV" Then
Copper_Type_ref = "Type_DWV"
End If
“ThisRow”只是用户输入的行号(即他们正在更改第 4 行中的某些内容,因此 ThisRow=4)。
完整的代码是:
Private Sub Copper_Data_Fill(ThisRow)
Dim Copper_Type_ref As String
Dim RowNum As Long

If Worksheets("Pipe Costing").Range("D" & ThisRow).Value = "Type K" Then
Copper_Type_ref = "Type_K"
ElseIf Worksheets("Pipe Costing").Range("D" & ThisRow).Value = "Type L" Then
Copper_Type_ref = "Type_L"
ElseIf Worksheets("Pipe Costing").Range("D" & ThisRow).Value = "Type M" Then
Copper_Type_ref = "Type_M"
ElseIf Worksheets("Pipe Costing").Range("D" & ThisRow).Value = "Type DWV" Then
Copper_Type_ref = "Type_DWV"
End If

'RowNum = Application.Match("F" & ThisRow, Worksheets("DATA").ListObjects(Copper_Type_ref).ListColumns(2).DataBodyRange, False).Row
'RowNum = Worksheets("DATA").ListObjects(Copper_Type_ref).ListColumns(2).DataBodyRange.Find("F" & ThisRow, xlValues).Row
RowNum = Worksheets("DATA").ListObjects(Copper_Type_ref).ListColumn(2).DataBodyRange.Find("F" & ThisRow, xlValues).Index
Worksheets("Pipe Costing").Range("H" & ThisRow).Value = Worksheets("DATA").ListObjects(Copper_Type_ref).DataBodyRange(RowNum, 4).Value
End Sub
我希望让 RowNum 成为表格行号,然后用它来填充最后一行
Worksheets("Pipe Costing").Range("H" & ThisRow).Value = Worksheets("DATA").ListObjects(Copper_Type_ref).DataBodyRange(RowNum, 4).Value
任何帮助表示赞赏!

最佳答案

将输入表中的当前行作为 Range 传递会更容易。参数到您的子:

Private Sub Copper_Data_Fill(ThisRow As Range)
Dim dVal, f As Range, tbl as range


dVal = ThisRow.Columns("D").Value
Select Case dVal
Case "Type K", "Type L", "Type M", "Type DWV"
'get the corresponding listobject data range
Set tbl = Worksheets("DATA").ListObjects(Replace(dVal, " ", "_")).DataBodyRange
Case Else
Exit Sub 'nothing to do (clear H?)
End Select

Set f = tbl.Columns(2).Find(ThisRow.Columns("F").Value, _
lookat:=xlWhole, LookIn:=xlValues)

If Not f Is Nothing Then
ThisRow.Columns("H").Value = f.Offset(0, 2).Value 'col4
Else
ThisRow.Columns("H").Value = "not found"
End If

End Sub

关于excel - 在表列中查找值并返回表行号 - VBA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66463414/

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