I am new to Klipfolio and need some help selecting data into a Klip column. From the below screenshot, I need to be able to select the total amount of receipts (Column L:L) entered per item ID (Column H:H) that occured in the date range between TODAY()-10 and TODAY()-4 (Column C:C). This is what has been developed thus far:
LOOKUP(@Sheet1,G:G;, --This is a lookup column in the Data Source 'O&M Weekly Allocation Rpt'
group(select(@sheet1,A:A;,BETWEEN(DATE(@C:C;,"MM/dd/yyyy"),DATE_ADD(TODAY()-10),TODAY()-4))),
GROUPBY(select(@sheet1,H:H;,BETWEEN(DATE(@sheet1,C:C;,"MM/dd/yyyy"),DATE_ADD(TODAY()-10),TODAY()-4))),
SELECT(@sheet1,L:L;,BETWEEN(DATE(@sheet1,C:C;,"MM/dd/yyyy"),DATE_ADD(TODAY()-10),TODAY()-4)))
However this is some kind of an error (bad syntax would be my guess). Any help would be appreciated! Thanks.