Files
cheatsheets/spreadsheet.md
Rico Sta. Cruz 511de900ba Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

533 B

title, tags
title tags
Spreadsheet functions
WIP

If

=IF(test, then, else)
=IF(EQ(A1, "paid"), "true", "false")

Comparators

=EQ(a,b)
=NE(a,b)
=GT(a,b)
=GTE(a,b)
=LT(a,b)
=LTE(a,b)

Math

=POW(2, 32)   # 2^32
=SIN() ACOS() etc
=CEILING(n,sig,mode)
=FLOOR(n,sig,mode)
=INT(n)
=SUM(range)
=SUMIF(range, criteria, sum_range)
=SUMIF(A1:A5, ">300", B1:B5)          # if A# is >300, use B#

Core

=TO_DATE(number)

Vlook

=VLOOKUP(value, range, column_index)