View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Msgbox Without ok button

Hi,

You would probably need a userform to do that but why not use the statusbar
by putting a line like this in your code

Application.StatusBar = "Working on row " & x

Mike

" wrote:

I have macro which runs through 10000 rows,
I would like to have msgbox showing the row numbers, but it should not
have ok buttion.
Just showing only the row numbers till macro is running.

Is this is possible

I have excel 2007.

Thanks