Forum Discussion
Passing User Inputted Date on Visual Level to Data Level
- 6 years ago
Hi jayt93 ,
Unfortunately, No.
I recommend this free DAX video training.
https://www.sqlbi.com/p/introducing-dax-video-course/
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
I ended up just using a measure as you said and was able to produced the desired results on the visual level without needing to display it in the data level via a calculated column anyways.
In case anyone is working on something similar, this is one of the measures I used:
>61-90 Days = calculate(sum('AR Query'[Base Amt]),filter('AR Query',(max('Input Date'[Date])-'AR Query'[Invoice Date]>60) &&
(max('Input Date'[Date])-'AR Query'[Invoice Date]<=90)))
But just out of curisoity still, is there any way for me to filter the input date on the slicer and pass that date into a calculated column in the data level?
Thanks