2
votes

I have a date column in my data model. I want to calculate the # of days between today and the date in the column using DAX.

Thoughts?

1

1 Answers

2
votes

You can create a calculated column with this formula:

=today()-[DATE]

and change the value of column in numeric:

enter image description here