Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Vinit
Frequent Visitor

DAX DirectQuery No. of days from previous order date to Today date

Hello all experts,

I want a DAX fromula No. of days between order date and Todays date in DirectQuery mode

 

Vinit_0-1667217814444.png

In above screenshot, 12/08/22 is my Order Date and 31/10/22 is Todays date so, No. of days between date is 80

 

So, I want Dax Formula which is Applied in DirectQuery mode, 

 

I used this DAX,

Day Count = DATEDIFF(Query1[orderdate],Today(),DAY) 

But it is not applicable.

Meaasge if anything require.

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Try

Day Count = DATEDIFF(SELECTEDVALUE(Query1[orderdate]),Today(),DAY)

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Try

Day Count = DATEDIFF(SELECTEDVALUE(Query1[orderdate]),Today(),DAY)
Vinit
Frequent Visitor

Yes it worked. Thanks

Helpful resources

Announcements