Quote Originally Posted by RobDog888
[color=navy]Then you probably have an error somewhere that is causing the intellisense not to function.
Any ideas where that error could be? The Sub and all of its wonders works just fine. I just wanted a little formatting done
Quote Originally Posted by RobDog888

Also, you shouldnt use the New in the dimensioning in theis line

VB Code:
  1. Dim objExcel As [b]New[/b] Excel.Application
  2.  
  3. 'Should do like...
  4. Dim objExcel As Excel.Application
  5.  
  6. Set objExcel = New Excel.Application
Yes, I know and I have a nasty habit of doing that. It is funny. I can catch things like this when I'm looking at other peoples code, you would think I would be able to catch it when looking at mine.