View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Executor Executor is offline
external usenet poster
 
Posts: 74
Default Ignoring Message

Hi Katando,

Try This:


Range("....").Select
Application.DisplayAlerts = False
Selection.Merge
Application.DisplayAlerts = True


This will not show the message at all.


Hoop this helps,



Executor