5

如何在 Excel 工作表中找到字符串值。我正在尝试objRange.Find(),但这也给了我错误的地址。例如,我想要“Object_paint”的地址,但它也给出了“Object_paint_and_stk”的地址

我应该如何获得确切的价值..?

Set objWorksheet = objWorkbook.Worksheets(worksheet)
Set objRange = objWorksheet.Range("B2:B600")    
Set objFind = objRange.Find("object_paint")

If Not objFind Is Nothing Then
    searchValue = objFind.AddressLocal(False, False)
end if
4

1 回答 1

4

第一次命中

excel range.find exact match site:microsoft.com

是:

范围.查找

你在那里找到

LookAt 类型:System.Object

Optional Object. Can be one of the following XlLookAt constants: xlWhole or xlPart.

并按照LookAt 链接,您会看到:

xlPart  Match against any part of the search text.
xlWhole Match against the whole of the search text.

顺便说一句:objTarget 是谁?

更新:

您必须“移植”(此处有一些提示)您在对 VBScript 的评论中提到的 VBA 代码片段:

Option Explicit

' Define Excel Consts unknown to VBScript
Const xlPart  = 2 
Const xlWhole = 1 

Dim oExcel : Set oExcel = CreateObject("Excel.Application")
Dim oWBook : Set oWBook = oExcel.Workbooks.Open("M:\lib\kurs0705\testdata\ut.xls")
Dim oRange : Set oRange = oWBook.Sheets("NewSheet").Range("A1:A11")
' translate named args to positional args
' expression.Find(What, After, LookIn, LookAt, SearchOrder, SearchDirection, MatchCase, MatchByte)
Dim oFnd1  : Set oFnd1  = oRange.Find("Title1", , , xlPart)
WScript.Echo TypeName(oFnd1), CStr(oFnd1)
Dim oFnd2  : Set oFnd2  = oRange.Find("Title1", , , xlWhole)
WScript.Echo TypeName(oFnd2), CStr(oFnd2)

oWBook.Close
oExcel.Quit

输出:

cscript excelfind.vbs
Range Title10
Range Title1
于 2013-11-09T13:06:25.603 回答