Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Kim Kim is offline
external usenet poster
 
Posts: 284
Default Pulling data from dates

I want to pull data from several worksheets based on a date range, put them
in a new worksheet to then utilize that data. Help?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default Pulling data from dates

You would probably want a looping macro to get the data from each sheet and
place at the next available row in the destination sheet.

for each ws in worksheets
dlr=sheets("master").cells(rows.count,1).end(xlup) .row+1
ws.range("ddd").copy sheets("master").cells(dlr,1)
next ws



--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Kim" wrote in message
...
I want to pull data from several worksheets based on a date range, put them
in a new worksheet to then utilize that data. Help?


  #3   Report Post  
Posted to microsoft.public.excel.misc
Kim Kim is offline
external usenet poster
 
Posts: 284
Default Pulling data from dates

Okay, I'm much more basic than this, can you dumb it down?

My dates are in AI. I need to look for a range say from 5/29/09-6/3/09 and
return the rows that have those dates.

Thank you so much!

"Don Guillett" wrote:

You would probably want a looping macro to get the data from each sheet and
place at the next available row in the destination sheet.

for each ws in worksheets
dlr=sheets("master").cells(rows.count,1).end(xlup) .row+1
ws.range("ddd").copy sheets("master").cells(dlr,1)
next ws



--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Kim" wrote in message
...
I want to pull data from several worksheets based on a date range, put them
in a new worksheet to then utilize that data. Help?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pulling dates meeting certain criteria into different TABs Tom Excel Discussion (Misc queries) 3 June 8th 09 04:46 PM
Sumif on pulling out data from dates Eagleryder Excel Worksheet Functions 3 May 19th 08 05:27 PM
Pulling data by start/finish dates Carla Excel Discussion (Misc queries) 6 May 17th 08 02:12 PM
Sumproduct - Pulling info based on lenght of time between dates watchtower Excel Worksheet Functions 6 February 1st 07 02:42 PM
pulling back dates that meet certain criteria Bruno Excel Worksheet Functions 1 July 21st 06 02:40 PM


All times are GMT +1. The time now is 03:40 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"