The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |