While in Acad, I want to get the value of the activecell. Some how it is not working. Pls help. As shown below, var1 is accessible, but var2 is not? Dim xlApp As Object dim var1 as integer dim var2 as integer Set xlApp = GetObject(, "Excel.Application") var1=xlApp.ActiveWorkbook.ActiveSheet.cells(4, 4).Value ' this works '************************************** var2=xlApp.ActiveWorkbook.ActiveSheet.activecell.Value ' this does not work 'Above line not working Thanks