我有下表:
在HLookup的帮助下,我试图找到与每个商店相关的价值
Dim V1 As Variant
With Worksheets("Sales")
Set Lookup_Range = .Range("A1:H6")
V1 = Application.HLookup("Shop 1", Lookup_Range, 2, False)
--checking if the value exists
If IsError(V1) Then
.Cells(1, 20) = 0
Else
.Cells(1, 20) = V1
End If
End With
即使存在“商店1”,该功能也找不到该值。没有“IsError(V1)”我得到N / A.我不明白什么是错的,哪里可能是个问题?
任何帮助都将不胜感激。