|
|
Filter for unique records
i have a table with
id seq group
1 AA 1
2 AB 1
3 AA 2
4 AB 2
5 ABC 3
6 BCA 3
7 ABC 4
8 BCA 4
now, i want to filter this data set so that, it comes with unique seq only
like
1 AA 1
2 AB 1
5 ABC 3
6 BCA 3
but, remember, this is not what I want??
1 AA 1
4 AB 2
5 ABC 3
8 BCA 4
that means in the data set there are same seqs assigned to different Group,
but i want all this similar seq to be in a single group and delete other
groups with duplicated seq. i tried
SELECT grouping.seq, last(grouping.groupno)
FROM grouping group by grouping.seq;
which gave me the unique seq but with results what i did not wanted (above
example)
Please, help me
|
|
0
|
|
|
|
Reply
|
Utf
|
5/25/2007 11:48:00 PM |
|
Hello. In the querie use the Totals option (it's the symbol of sum in excel)
then in the column of Total row choose First.
I hope it helps.
Regards,
Marco
"ananta" wrote:
> i have a table with
> id seq group
> 1 AA 1
> 2 AB 1
> 3 AA 2
> 4 AB 2
> 5 ABC 3
> 6 BCA 3
> 7 ABC 4
> 8 BCA 4
>
> now, i want to filter this data set so that, it comes with unique seq only
> like
> 1 AA 1
> 2 AB 1
> 5 ABC 3
> 6 BCA 3
>
> but, remember, this is not what I want??
>
> 1 AA 1
> 4 AB 2
> 5 ABC 3
> 8 BCA 4
>
> that means in the data set there are same seqs assigned to different Group,
> but i want all this similar seq to be in a single group and delete other
> groups with duplicated seq. i tried
>
> SELECT grouping.seq, last(grouping.groupno)
> FROM grouping group by grouping.seq;
>
> which gave me the unique seq but with results what i did not wanted (above
> example)
>
> Please, help me
>
>
|
|
0
|
|
|
|
Reply
|
Utf
|
5/26/2007 12:27:01 AM
|
|
|
1 Replies
209 Views
(page loaded in 0.062 seconds)
Similiar Articles: Filtering for unique records (Excel 2007) - microsoft.public.excel ...COL A has 100,000 cells. Some data is contained in only one cell while other data is contained in more than one cell. To get a list of the cells containing unique ... Unique Values, not Unique Records - microsoft.public.excel.misc ...in the dialog for the advanced filter, make sure only the ID column is referenced "steph44haf" wrote: > My data looks like the following: > > ID Type ... Sum filtered records that produce no results - microsoft.public ...Excel Advanced Filter Introduction Filter Unique Records. You can use an Excel Advanced Filter to extract a list of unique ... advanced filter. How do I remove all records of duplicated fields? - microsoft ...The Common and known options is to use Advanced Filter to filter "Uniques Only". ... Show only unique records in duplicated field - microsoft.public ... How do I remove all ... query to filter by current record id? - microsoft.public.access ...2 tables called customer and service customer table has unique numerical customer id field, this is the primary key. an example value for this fi... Advanced Filtering top values - microsoft.public.excel.programming ...Use Advanced Filter to create unique list of record numbers as ... date in descending order (Most recent date to top). ... will need to edit your row number for the ... Removing duplicate records based off of date - microsoft.public ...(See Help for more info in Advanced Filter) Check Copy to another location. Check Unique records only. Click icon at right of Copy to field. How to list and count unique records - microsoft.public.excel ...Count(*) You can then examine the value of the ... MsgBox "All gone" Immediately after a filter the full count ... How to list and count unique records - microsoft.public ... count unique values with auto-filter on - microsoft.public.excel ...Count(*) You can then examine the value of the ... MsgBox "All gone" Immediately after a filter the full count ... How to list and count unique records - microsoft.public ... advanced filter date criteria - microsoft.public.excel.programming ...advance filter unique records except on column - microsoft.public ..... records based off of date - microsoft.public ... Use Advanced Filter to ... rows meeting certain ... Filter for unique records - Excel - Office.comFilter for unique records by applying a filter to one or more columns of data. Excel Advanced Filter IntroductionAn Excel Advanced Filter can extract data to a different sheet, filter list in place, extract list of unique records to eliminate duplicates. Filter for unique values or remove duplicate values - Excel ...In Microsoft Office Excel 2007, you have several ways to filter for unique values or ... Select the Unique records only check box, and click OK. The unique values from the ... Excel - Filter Unique Records - Hello All ... - Free Excel HelpFilter Unique Records - Hello All For some reasons the Unique Records Filter... - Free Excel Help Filter for Unique Records in Excel » Bacon Bits:During the summer, blog readership will be down. So I’m saving my good Excel and Access tricks for later. Right now, I’m continuing a series called ‘Oldies but ... 7/13/2012 9:44:27 PM
|
|
|
|
|
|
|
|
|