我正在尝试使用以下语句将条件格式添加到VBA的范围中:
r.FormatConditions.Add Type:=xlExpression, Formula1:="=AND($AYQ4<=D$3;$AYR4>=D$3)"
现在的问题是,我没有AYQ,4,D,3和AYR,而是有以下VBA变量:
lDatesAndHeadersRow = 3
the first row of range r = 4
the first column of range r = D
lStartDateCol = column number of AYQ
lEndDateCol = column number of AYR
在以下表达式Formula1:="=AND($AYQ4<=D$3;$AYR4>=D$3)"
中,我有什么方法可以使用我的VBA变量而不是正常的单元格引用?
答案 0 :(得分:0)