Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Private Sub Workbook_Activate() If (ActiveWorkbook.Name = MY_WORKBOOK_NAME) Then UIHide Else UIShow End If End Sub
אני רוצה לתת לה עוד תנאי (לא or אלא and)
or
and
If Range("admin!C2").Value = "חיובי" Then
איך משלבים?
@פלורידה כתבת מצוין כותבים and ככה
Private Sub Workbook_Activate() If ActiveWorkbook.Name = MY_WORKBOOK_NAME And Range("admin!C2").Value = "חיובי" Then UIHide Else UIShow End If End Sub