简体   繁体   中英

Excel interop range find entire cell contents

Is there any way to set this excel flag (match entire cell contents) on by code?
Currently i'm using the following, but it gaves me only partial match
eg. lookin value is 1520 and it finds 651520
or just use in case the findnext method for it?

currentFind = insta.Find(line, Missing.Value, XlFindLookIn.xlValues, XlLookAt.xlPart, XlSearchOrder.xlByRows, XlSearchDirection.xlNext, false, Missing.Value, Missing.Value);

Change from XlLookAt.xlPart to XlLookAt.xlWhole .

ref: http://msdn.microsoft.com/en-us/library/office/ff839746%28v=office.15%29.aspx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM