Calculate date difference (vs "Today()")

Fab117

New Member
Joined
Oct 20, 2022
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hello,

I'm newbie with Power BI.

I'm quite familiar with VBA, but not at all with Dax.

I started building my first Power BI report based on several data base fields, but would need to do some calculation with Dax.

I spent time with Microsoft Dax functions definitions (Data Analysis Expressions (DAX) Reference - DAX), but didn't find my solution.

Challenge n°2: Calculate date difference (vs "Today()")

In database "Tasks", I've
  • A column [TargetedDueDate] with targeted completion date => date field
  • A column [Progress] with a range [0-100]. "100" meaning that task is fully completed

I'd like to create 2 new columns:
  • "Variance" where there is calculation: [TargetedDueDate] content – Today () (=> will be positive if still on time and negative if overdue)
  • "ProgressStatus" with 3 possible contents:
"On time": If Variance is ">20"​
"Due soon": If Variance is ">=0" and "<=20"​
"Overdue": If Variance is "<0"​


Do someone could help me with the formulae's in both "Variance" and "ProgressStatus" columns?


Thanks a lot


Fab
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
In case someone else would face same challenge:

Variance =
Number.From(Date.From([TargetedDueDate])) - Number.From(Date.From(DateTime.LocalNow()))

// and

ProgressStatus =
if [Progress] = 100 then "Completed"
else if [Variance] > 20 then "On time"
else if [Variance] >= 0 and [Variance] <= 20 then "Due soon"
else if [Variance] < 0 then "Overdue"
else // your escape value e.g. null, "Unknown" etc.

Thanks to v-stephen-msft
 
Upvote 0

Forum statistics

Threads
1,215,132
Messages
6,123,227
Members
449,091
Latest member
jeremy_bp001

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top