To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello all experts,
I want a DAX fromula No. of days between order date and Todays date in DirectQuery mode
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.
Solved! Go to Solution.
Try
Day Count = DATEDIFF(SELECTEDVALUE(Query1[orderdate]),Today(),DAY)
Try
Day Count = DATEDIFF(SELECTEDVALUE(Query1[orderdate]),Today(),DAY)
Yes it worked. Thanks
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |