Q: Appleworks 6.2.9 Spreadsheet Sorting
I am running Appleworks 6.2.9 on my PPC G4 Laptop. I have a one column list of data of approx 12,000 entries. Each one is not unique, rather they're duplicates in assorted quantities.
Is there a sort function where the program can eliminate duplicates so my final list is only one of each entry, but with some sort of column with a frequency count that lists how many times each entry appeared?
Posted on Feb 8, 2013 7:29 AM
Hello
Given source data pre-sorted in column A (e.g., A1..A20), you may use following formulae for columns B, C, D.
B is for accumulated occurrence of data in A
C is for unique entries from A
D is for occurrence of data in C
# A1..A20 : sorted list of data # B1..B20 : accumulated occurrence of each entry in A B1 =1 B2 =IF(A2=A1,B1+1,1) .. B20 =IF(A20=A19,B19+1,1) # C1..C20 : unique entries from A C1 =IF(B1<B2,"",A1) .. C20 =IF(B20<B21,"",A20) # D1..D20 : occurrence of each entry in C D1 =IF(B1<B2,"",B1) .. D20 =IF(B20<B21,"",B20)
* B2..B20, C1..C20, D1..D20 are entered by fill down. Note that B1 = 1.
If you want to eliminate the black data in column C and D, copy C and D and paste value of them to, e.g., columns E and F, and sort E and F by E.
Hope this helps,
H
Posted on Feb 11, 2013 10:43 AM