Excel文档macros产量“未find命名的参数(错误448)”

这个代码片段在Windows上的Excel中运行得非常好。
但在OSX上,它提供了一个错误的Named argument not found (Error 448).

 With Sheets("Colors") Set rangeFound = .Cells.find(What:=Resource, After:=.Cells(1, 1), LookIn:=xlValues, _ LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _ MatchCase:=False, SearchFormat:=False) End With 

Mac不支持SearchFormat参数。 只要省略,代码就会运行。