A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

using access to filter data



 
 
Thread Tools Display Modes
  #1  
Old October 14th, 2008, 07:40 PM posted to microsoft.public.access
annipy
external usenet poster
 
Posts: 2
Default using access to filter data

bad title but...

I have a huge amount of data in Excel that I am sorting by instances.
Example: I have a unique ID field, and any ID that have multiple instances,
that is, more than one line item, I must copy into a separate worksheet. Is
there a way that an Access database can perform this function more
efficiently? There are over 7000 lines of data and it is taking an
inordinate amount of time to complete. Thanks for your help.
--
APM
  #2  
Old October 14th, 2008, 08:21 PM posted to microsoft.public.access
John W. Vinson
external usenet poster
 
Posts: 18,261
Default using access to filter data

On Tue, 14 Oct 2008 11:40:01 -0700, annipy
wrote:

bad title but...

I have a huge amount of data in Excel that I am sorting by instances.
Example: I have a unique ID field, and any ID that have multiple instances,
that is, more than one line item, I must copy into a separate worksheet. Is
there a way that an Access database can perform this function more
efficiently? There are over 7000 lines of data and it is taking an
inordinate amount of time to complete. Thanks for your help.


Trivially easy in Access, with a Query:

SELECT [ID] FROM Table
WHERE Count(*) 1
GROUP BY ID;

With a 7000 row table you'll get the result before you can blink.
--

John W. Vinson [MVP]
  #3  
Old October 14th, 2008, 09:54 PM posted to microsoft.public.access
annipy
external usenet poster
 
Posts: 2
Default using access to filter data

Thanks John. I'll try it.
--
APM


"John W. Vinson" wrote:

On Tue, 14 Oct 2008 11:40:01 -0700, annipy
wrote:

bad title but...

I have a huge amount of data in Excel that I am sorting by instances.
Example: I have a unique ID field, and any ID that have multiple instances,
that is, more than one line item, I must copy into a separate worksheet. Is
there a way that an Access database can perform this function more
efficiently? There are over 7000 lines of data and it is taking an
inordinate amount of time to complete. Thanks for your help.


Trivially easy in Access, with a Query:

SELECT [ID] FROM Table
WHERE Count(*) 1
GROUP BY ID;

With a 7000 row table you'll get the result before you can blink.
--

John W. Vinson [MVP]

  #4  
Old October 28th, 2008, 03:56 PM posted to microsoft.public.access
pedro carlos
external usenet poster
 
Posts: 1
Default using access to filter data


"annipy" escreveu na mensagem
...
Thanks John. I'll try it.
--
APM


"John W. Vinson" wrote:

On Tue, 14 Oct 2008 11:40:01 -0700, annipy

wrote:

bad title but...

I have a huge amount of data in Excel that I am sorting by instances.
Example: I have a unique ID field, and any ID that have multiple
instances,
that is, more than one line item, I must copy into a separate worksheet.
Is
there a way that an Access database can perform this function more
efficiently? There are over 7000 lines of data and it is taking an
inordinate amount of time to complete. Thanks for your help.


Trivially easy in Access, with a Query:

SELECT [ID] FROM Table
WHERE Count(*) 1
GROUP BY ID;

With a 7000 row table you'll get the result before you can blink.
--

John W. Vinson [MVP]



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


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


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