VBA:包含条件的子程序
VBA: include the subroutine to the condtion
你能帮我解释语法吗:我想在我的代码中包含子例程 FRAIS_bis(),但是当我编写代码时它显示为红色。
Worksheets("5 - Tarification").Range("L26").Interior.ColorIndex = 15
If Worksheets("5 - Tarification").Range("X12").Value = False Then
If Len(Worksheets("1 - Feuille de Suivi Commercial").Range("E16").Value) > 0
Then
FRAIS_bis()
Else
Worksheets("5 - Tarification").Range("X4").Value = False
感谢您的帮助!
需要在子程序名前加上Call
(或者不使用括号),一切都说明了here.
你能帮我解释语法吗:我想在我的代码中包含子例程 FRAIS_bis(),但是当我编写代码时它显示为红色。
Worksheets("5 - Tarification").Range("L26").Interior.ColorIndex = 15
If Worksheets("5 - Tarification").Range("X12").Value = False Then
If Len(Worksheets("1 - Feuille de Suivi Commercial").Range("E16").Value) > 0
Then
FRAIS_bis()
Else
Worksheets("5 - Tarification").Range("X4").Value = False
感谢您的帮助!
需要在子程序名前加上Call
(或者不使用括号),一切都说明了here.