March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I am trying to get dates from an admission date to todays date to go into a custom coumn using the following:
{ Number.From([admissionDate])..Number.From(DateTime.Date(DateTime.LocalNow)) }
However the custom column i am adding is coming up with an Error which says :
'Expression.Error: The DateTime.Date function expects an input of type DateTime or DateTimeZone.
Details:
[Function]'
I thought that DateTime.LocalNow did return the date as of now in a date time format?
Solved! Go to Solution.
Are you looking for datediff or Dates.
In M
=each Duration.Days([Date1] - [Date2])
In dax date diff a new column
datediff([admission date],today(),day)
Hey @NazeefKhan19 ,
you have to use parenthesis in combination with DateTime.LocalNow as it is a function like so:
Number.From(DateTime.Date(DateTime.LocalNow()))
Hopefully, this provides what you are looking for.
Regards,
Tom
Hey @NazeefKhan19 ,
you have to use parenthesis in combination with DateTime.LocalNow as it is a function like so:
Number.From(DateTime.Date(DateTime.LocalNow()))
Hopefully, this provides what you are looking for.
Regards,
Tom
Hi @TomMartens
If i am doing the following to get dates between two dates. How do i replace the 'DischargeDate' with today's date if its null?
{ Number.From([AdmissionDate]) ..Number.From([DischargeDate]) }
Are you looking for datediff or Dates.
In M
=each Duration.Days([Date1] - [Date2])
In dax date diff a new column
datediff([admission date],today(),day)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |