您好,我想根据在工作表 1 的单元格中输入的数字隐藏工作表 2 中的单元格
我试过的:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
'This is were im stuck?
If Target.Address = "Sheet1!$D$387" Then
Rows("28:46").Hidden = True
Rows("28:" & 28 + Val(Target.Value)).Hidden = False
Application.ScreenUpdating = True
End If
End Sub
访问表 1 中 D387 值的宏是什么?