Hi,
I`m using Worksheet_Change to put values in table. I set DisplayAlerts and ScreenUpdating to FALSE.
But when code is running (after I select value from list in D9), I see like values are showing one-by one, and screen is refreshing.
Can somehow I eleminate this?
I`m using Worksheet_Change to put values in table. I set DisplayAlerts and ScreenUpdating to FALSE.
Code:
Application.DisplayAlerts = False
Application.ScreenUpdating = False
If Target.Address = "$D$9" Then
For g = 1 To rowdata_lr
......
next g
End if
Application.DisplayAlerts = TrueApplication.ScreenUpdating = True
But when code is running (after I select value from list in D9), I see like values are showing one-by one, and screen is refreshing.
Can somehow I eleminate this?
Last edited: