1
1
Have a question I cant seem to figure out using the filter.
Column A has 1400 rows with 800 additional rows that are duplicates (so 2200 total rows).
Column B has inventory amount for only the last 800 rows of Column A.
I want to filter my data so I only select rows where there is a duplicate value for Column A and my inventory amount in Column B is greater than 0 (i.e. one of those last 800 rows)
Dunno about Calc, but with Excel you could use the following in a "helper column" (example formula for row 1):
=AND(COUNTIF(A:A,A1)>1,B1>0)
. Then, filter the sheet to only show rows where that column's value is TRUE. – Iszi – 2014-07-29T21:26:16.430