ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Help on retrieve data in each worksheet (https://www.excelbanter.com/excel-programming/314104-help-retrieve-data-each-worksheet.html)

keldo[_4_]

Help on retrieve data in each worksheet
 

I try to write a program to retrieve data from a database for eac
worksheet, but fail :( , would you mind to help me what problems fo
the below codings?

=================================
Sub Macro1()

Dim sh As Worksheet

For Each sh In ThisWorkbook.Worksheets

Range("A1", "AZ171").Select
Application.Run Macro:=("EssMenuRetrieve")
Range("A173", "AZ344").Select
Application.Run Macro:=("EssMenuRetrieve")

Next sh

End Sub
=================================

--
keld
-----------------------------------------------------------------------
keldo's Profile: http://www.excelforum.com/member.php...fo&userid=1391
View this thread: http://www.excelforum.com/showthread.php?threadid=27073


Dave Peterson[_3_]

Help on retrieve data in each worksheet
 
Without knowing what EssMenuRetrieve does, maybe...

Sub Macro1()

Dim sh As Worksheet

For Each sh In ThisWorkbook.Worksheets
sh.select
Range("A1", "AZ171").Select
Application.Run Macro:=("EssMenuRetrieve")
Range("A173", "AZ344").Select
Application.Run Macro:=("EssMenuRetrieve")
Next sh

End Sub

keldo wrote:

I try to write a program to retrieve data from a database for each
worksheet, but fail :( , would you mind to help me what problems for
the below codings?

=================================
Sub Macro1()

Dim sh As Worksheet

For Each sh In ThisWorkbook.Worksheets

Range("A1", "AZ171").Select
Application.Run Macro:=("EssMenuRetrieve")
Range("A173", "AZ344").Select
Application.Run Macro:=("EssMenuRetrieve")

Next sh

End Sub
==================================

--
keldo
------------------------------------------------------------------------
keldo's Profile: http://www.excelforum.com/member.php...o&userid=13913
View this thread: http://www.excelforum.com/showthread...hreadid=270736


--

Dave Peterson



All times are GMT +1. The time now is 04:17 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com