The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello to all,
I would like to create a column in my table with a condition:
If the due date (Date d'échéance) is between "2020/10/01" and "2020/12/31", and Amount (Montant)> 0, then date = "2021/01/01".
I can't do that...
Solved! Go to Solution.
@Anonymous , a new column
New date = if( [Due Date] >= date(2020,10,01) && [Due Date] <= Date(2020,12,31) && [Montant] , date(2021,01,01), [Due Date])
@Anonymous , a new column
New date = if( [Due Date] >= date(2020,10,01) && [Due Date] <= Date(2020,12,31) && [Montant] , date(2021,01,01), [Due Date])
Thanks
User | Count |
---|---|
69 | |
64 | |
62 | |
55 | |
28 |
User | Count |
---|---|
112 | |
81 | |
65 | |
48 | |
38 |