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 All
How can i traslate this excel expression to power query calculated column.
If Startdate is before TaskStartDate then Plan TaskStartDate
else if Start date is between Taskstartdate and TaskEnddate then startdate
else if start date is after TaskEndDate else null
RP
Solved! Go to Solution.
Add a Custom Column within Power Query and then write:
if [startdate] is null then null else
if [startdate] < [TaskStartDate] then [Plan TaskStartDate] else if
[startdate] >= [TaskStartDate] and if [startdate] <= [TaskEnddate] then [startdate] else if [start date] > [TaskEndDate] then [whatevercolumnorconditionyouneed] else null
I purposefully started with an evaluation of the startdate being null, because if you have null values in that column, you'll get an error after creating the column.
Proud to be a Super User!
Add a Custom Column within Power Query and then write:
if [startdate] is null then null else
if [startdate] < [TaskStartDate] then [Plan TaskStartDate] else if
[startdate] >= [TaskStartDate] and if [startdate] <= [TaskEnddate] then [startdate] else if [start date] > [TaskEndDate] then [whatevercolumnorconditionyouneed] else null
I purposefully started with an evaluation of the startdate being null, because if you have null values in that column, you'll get an error after creating the column.
Proud to be a Super User!
User | Count |
---|---|
65 | |
60 | |
55 | |
54 | |
31 |
User | Count |
---|---|
180 | |
88 | |
72 | |
48 | |
46 |