Moritz Drexl
Haskell eXchange 2017
A | B | C |
---|---|---|
3 | 2 | 5 |
1 | 3 | 4 |
C
Type: Integer
Formula:
$A + $B
Table: T
Month | Client | Items |
---|---|---|
Sep 2017 | John | 5 items |
Oct 2017 | John | 2 items |
Items
Type: List (Row #Items)
Formula:
incl : Row #Items -> Boolean
incl i =
within $Month i.Date
&& i.Client == $Client
filter incl #Items
Date | Client | Amount |
---|---|---|
9/14/17 | John | 49.50 |
... | ... | ... |
Table: Invoices
Table: Items
(live)