Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi guys would be great if someone could help me I'm trying to count every row where due_date <= today() and entry_date <TODAY() - 7
I've tried using this functions but it errors
Solved! Go to Solution.
Make sure that the due_date and entry_date columns are both of type Date, at the moment it looks like at least 1 of them is Text.
Hi @georgec96 ,
try
count = calculate(count(open_orders[order_number]),open_orders[due_date] <= TODAY() || open_orders[entry_date] < TODAY() - 7)
Regards
Make sure that the due_date and entry_date columns are both of type Date, at the moment it looks like at least 1 of them is Text.
User | Count |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
28 | |
19 | |
13 | |
11 | |
7 |