View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
pikus pikus is offline
external usenet poster
 
Posts: 1
Default Ron Helped Once Can you do it again?

These are 7 new pages in a new workbook or are you using one workboo
for an extended period of time?
You could refer to the last seven sheets added like this:

x = Sheets.Count
y = x - 6
For z = y To x
dailyTotal = Sheets(z).Cells(row, col).Value
Sheets("Weekly Summary").Cells(row, col).Value = dailyTotal
Next z

Hope this helps... - Piku

--
Message posted from http://www.ExcelForum.com