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
F
with0
or1
depending on if the value in on that row of columnC
is listed in columnH
. - Define column
H
as a range called List (Data > Define Range). - Place the following in
F2
and use it to populate the rest of columnF
:=COUNTIF(List,C2)
- Sort using column
F
to 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)))