Set xlApp = CreateObject("excel.Application")

K

Kaseano

Anyone have any idea why the code,

Dim xlApp As Object
Set xlApp = CreateObject("excel.Application")

doesn't do anything?

Thanks so much for any help . . ..
 
J

Jason Lepack

What did you expect it to do? What is the result of:

if xlApp is nothing then
debug.print "it's nothing"
else
debug.print "it's all good"
end if
 
Top