当我尝试执行它时,我在Excel宏中遇到以下错误: 编译错误:预期的函数或变量。
'On split le libellé afin de récupérer la chaîne de caractère source1 à rechercher dans la colonne B du PSR
TabSrcDoubleEntree = Split(PtoutPar(j).Nom, "/")
' on récupère la ligne du PSR (colonne B) dans laquelle la chaîne source 1 (=TabSrcDoubleEntree(0)) est renseignée
Set sheet = Workbooks(PFile).Sheets(ParMap(j).Parametrage.SrcFeuille)
**With sheet.Activate**
Set celluleRowRange = .Range("B", .Range("B").End(xlUp))
Set celluleFind = celluleRowRange.Find(TabSrcDoubleEntree(0), LookIn:=xlValues, lookat:=xlWhole)
celluleRowFind = celluleFind.Row
End With
'on initialise la ligne à partir de laquelle on fait la recherche à "c.Row"
ThisWorkbook.Sheets(PFeuilleDest).Cells(iDest, ParMap(j).Parametrage.DestCol).Value = Workbooks(PFile).Sheets(ParMap(j).Parametrage.SrcFeuille).Cells(celluleFind.Row + ParMap(j).Parametrage.SrcPremiereLigne, ParMap(j).Parametrage.SrcCol).Value
=>有谁知道为什么说明书。激活是不正确的?
感谢很多 西蒙
答案 0 :(得分:0)
With "this"
语句用于从"this"
的上下文执行以下块。在您的情况下,您正在从Activate
函数的上下文执行块,而不是sheet
本身,这会引发编译错误。我建议将其更改为以下
' Perform the following from the context of sheet
With sheet
.Activate
Set celluleRowRange = .Range("B", .Range("B").End(xlUp))
' ...
End With