Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!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