Libre Office
Libre Office is a cross-platform office suite available from libreoffice.org.
Calc
Ctrl+D: Copy contents and formatting from topmost cells to rest of selected range in Calc.-
Filter Items in a List:
- Populate column
Fwith0or1depending on if the value in on that row of columnCis listed in columnH. - Define column
Has a range called List (Data > Define Range). - Place the following in
F2and use it to populate the rest of columnF:=COUNTIF(List,C2) - Sort using column
Fto group all of the matching data together.
- Populate column
Formulae
- Column C or D is blank:
OR(ISBLANK(Sheet1.$C2),ISBLANK(Sheet1.$D2)) - Column C is not blank and column D is not blank:
AND(NOT(ISBLANK(Sheet1.$C2)),NOT(ISBLANK(Sheet1.$D2)))