K
Khalil Handal
Hi,
I added the code below so as to hide row 30 if A30 i empty (has no value).
A30 has a formula to copy a vakue from another sheet.
The same for rows 31 and 32 and 33
Private Sub Worksheet_Calculate()
Rows("30").Hidden = Range("A30").Value = ""
Rows("31").Hidden = Range("A31").Value = ""
Rows("32").Hidden = Range("A32").Value = ""
Rows("33").Hidden = Range("A33").Value = ""
End Sub
My problem is that I see the "sand clock" (wait sign) and the programm will
freeze. i.e. I cannot do any thing, I have to press Ctrl+Alt+Del. to exit.
Any ideas
I added the code below so as to hide row 30 if A30 i empty (has no value).
A30 has a formula to copy a vakue from another sheet.
The same for rows 31 and 32 and 33
Private Sub Worksheet_Calculate()
Rows("30").Hidden = Range("A30").Value = ""
Rows("31").Hidden = Range("A31").Value = ""
Rows("32").Hidden = Range("A32").Value = ""
Rows("33").Hidden = Range("A33").Value = ""
End Sub
My problem is that I see the "sand clock" (wait sign) and the programm will
freeze. i.e. I cannot do any thing, I have to press Ctrl+Alt+Del. to exit.
Any ideas