#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default Excel 2003

Hi All,

After suggestions for the following please.

Have a large data table that tracks customer information. Would like to
interogate the table and display customer information that meets a certain
criteria.

i.e if customer delivery date is falling due less than 5 days from a
nominated date, i would like to display customer name, item # etc on a
seperate page that meets that condition (highlight falling due)

Cheers
Jim


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default Excel 2003



"OzzyJim" wrote:

Hi All,

After suggestions for the following please.

Have a large data table that tracks customer information. Would like to
interogate the table and display customer information that meets a certain
criteria.

i.e if customer delivery date is falling due less than 5 days from a
nominated date, i would like to display customer name, item # etc on a
seperate page that meets that condition (highlight falling due)

Cheers
Jim
Just to clarify above. Simple table below. If i want to return info on lines with less than 5 days to go, line 1 details would be displayed


Customer Part Due date Days to go
John 114-524 18/12/2009 4
Deb 114-525 19/12/2009 5
Deb 114-526 20/12/2009 6

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Excel 2003

Autofilter on Days to Go then copy results to the next sheet.


Gord Dibben MS Excel MVP

On Mon, 14 Dec 2009 21:07:02 -0800, OzzyJim
wrote:



"OzzyJim" wrote:

Hi All,

After suggestions for the following please.

Have a large data table that tracks customer information. Would like to
interogate the table and display customer information that meets a certain
criteria.

i.e if customer delivery date is falling due less than 5 days from a
nominated date, i would like to display customer name, item # etc on a
seperate page that meets that condition (highlight falling due)

Cheers
Jim
Just to clarify above. Simple table below. If i want to return info on lines with less than 5 days to go, line 1 details would be displayed


Customer Part Due date Days to go
John 114-524 18/12/2009 4
Deb 114-525 19/12/2009 5
Deb 114-526 20/12/2009 6


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default Excel 2003

Thanks Gord,

Is there anyway to make this automated....i.e if and vlookup???

"Gord Dibben" wrote:

Autofilter on Days to Go then copy results to the next sheet.


Gord Dibben MS Excel MVP

On Mon, 14 Dec 2009 21:07:02 -0800, OzzyJim
wrote:



"OzzyJim" wrote:

Hi All,

After suggestions for the following please.

Have a large data table that tracks customer information. Would like to
interogate the table and display customer information that meets a certain
criteria.

i.e if customer delivery date is falling due less than 5 days from a
nominated date, i would like to display customer name, item # etc on a
seperate page that meets that condition (highlight falling due)

Cheers
Jim
Just to clarify above. Simple table below. If i want to return info on lines with less than 5 days to go, line 1 details would be displayed


Customer Part Due date Days to go
John 114-524 18/12/2009 4
Deb 114-525 19/12/2009 5
Deb 114-526 20/12/2009 6


.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Excel 2003

Sort of..........

In Sheet1 you have the list per your example.

In Sheet2 row 1 enter your titles.

In Sheet2 A2 enter this formula

=IF(Sheet1!$D2<5,Sheet1!A2,"")

Copy across to D2 and down as far as you need.

Data will not be contiguous but it will get there.

To fully automate it you could use code from Ron de Bruin's site which
filters and copies to a sheet.

http://www.rondebruin.nl/copy5.htm

He gives five example scenarios with code for each and a sample workbook.


Gord


On Tue, 15 Dec 2009 13:34:02 -0800, OzzyJim
wrote:

Thanks Gord,

Is there anyway to make this automated....i.e if and vlookup???

"Gord Dibben" wrote:

Autofilter on Days to Go then copy results to the next sheet.


Gord Dibben MS Excel MVP

On Mon, 14 Dec 2009 21:07:02 -0800, OzzyJim
wrote:



"OzzyJim" wrote:

Hi All,

After suggestions for the following please.

Have a large data table that tracks customer information. Would like to
interogate the table and display customer information that meets a certain
criteria.

i.e if customer delivery date is falling due less than 5 days from a
nominated date, i would like to display customer name, item # etc on a
seperate page that meets that condition (highlight falling due)

Cheers
Jim
Just to clarify above. Simple table below. If i want to return info on lines with less than 5 days to go, line 1 details would be displayed

Customer Part Due date Days to go
John 114-524 18/12/2009 4
Deb 114-525 19/12/2009 5
Deb 114-526 20/12/2009 6


.




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default Excel 2003

Spot on Gord, appreciate your help mate

"Gord Dibben" wrote:

Sort of..........

In Sheet1 you have the list per your example.

In Sheet2 row 1 enter your titles.

In Sheet2 A2 enter this formula

=IF(Sheet1!$D2<5,Sheet1!A2,"")

Copy across to D2 and down as far as you need.

Data will not be contiguous but it will get there.

To fully automate it you could use code from Ron de Bruin's site which
filters and copies to a sheet.

http://www.rondebruin.nl/copy5.htm

He gives five example scenarios with code for each and a sample workbook.


Gord


On Tue, 15 Dec 2009 13:34:02 -0800, OzzyJim
wrote:

Thanks Gord,

Is there anyway to make this automated....i.e if and vlookup???

"Gord Dibben" wrote:

Autofilter on Days to Go then copy results to the next sheet.


Gord Dibben MS Excel MVP

On Mon, 14 Dec 2009 21:07:02 -0800, OzzyJim
wrote:



"OzzyJim" wrote:

Hi All,

After suggestions for the following please.

Have a large data table that tracks customer information. Would like to
interogate the table and display customer information that meets a certain
criteria.

i.e if customer delivery date is falling due less than 5 days from a
nominated date, i would like to display customer name, item # etc on a
seperate page that meets that condition (highlight falling due)

Cheers
Jim
Just to clarify above. Simple table below. If i want to return info on lines with less than 5 days to go, line 1 details would be displayed

Customer Part Due date Days to go
John 114-524 18/12/2009 4
Deb 114-525 19/12/2009 5
Deb 114-526 20/12/2009 6

.


.

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
importing/linking data from an Access 2003 Query to an Excel 2003 PerryK Excel Discussion (Misc queries) 2 August 24th 09 07:06 PM
Convert Excel 2003 spreadsheet into Outlook Contacts table 2003 Stuart[_4_] Excel Discussion (Misc queries) 2 October 6th 08 05:07 PM
import Excel 2003 file into Outlook 2003 - NO NAMED RANGES?? lewisma9 Excel Discussion (Misc queries) 0 February 27th 07 12:23 AM
Copying Excel 2003 Selection into Outlook 2003 HTML E-Mail Message [email protected] Excel Discussion (Misc queries) 0 July 10th 06 03:07 PM
Excel 2003 Database Driver Visual FoxPro 7 on Server 2003. Cindy Winegarden Excel Discussion (Misc queries) 0 November 28th 04 12:07 AM


All times are GMT +1. The time now is 07:02 PM.

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

About Us

"It's about Microsoft Excel"