Viewing 2 posts - 1 through 3 (of 3 total)
"I need to take the results of the following query and place them in a .CSV file and then e-mail that file to someone else. Is this possible using DTS...
November 29, 2005 at 11:39 am
#606505
Use the connection property of either a pivotcache or querytable... a little sub like this will list them all for you:
Sub showconnections()
Dim pc As PivotCache
For Each pc In ActiveWorkbook.PivotCaches
Debug.Print...
October 5, 2005 at 8:47 pm
#595328