Hi Ajay;
I think that the only way that you can prevent the refresh is to set calculation to manual.
I don't think that is a good idea. If you turn automatic calculation off and the user doesn't put something into N8 (which presumably would set calculation back to automatic), then calculation is still set to manual.
I think this is a better solution.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Columns("M:M")) Is Nothing Then
With Target.Offset(0, 1)
If .Value = "" Then
Application.EnableEvents = False
.Value = " "
Application.EnableEvents = True
End If
End With
ElseIf Not Intersect(Target, Columns("N:N")) Is Nothing Then
With Target
If .Value = "" Then
Application.EnableEvents = False
.Value = " "
Application.EnableEvents = True
End If
End With
End If
End Sub
Or you could change the formula in B5 to
=IF(VLOOKUP(A5,M:N,2,FALSE)=0,"",VLOOKUP(A5,M:N,2,FALSE))
If you go this route and have a Huge list, you might do this
Z5 : =VLOOKUP(A5,M:N,2,FALSE)
B5 : =If(Z5=0,"",Z5)
And hide column Z (or whatever column suits you).
that way vlookup only executes once so the calculation is faster
Bookmarks