Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
The goal is to create a measure of the difference between any date on the Date column and 10/01/2020. I am getting an error on the first step...not sure why the calculation is not accepting the Date field.
The final result will look something like (but with the right syntaxes):
Days to 10/01/2020 = 'Daily Trend'[Date]-10/01/2020
Solved! Go to Solution.
@diogobraga2 - Try:
Days to 10/01/2020 = (DATE(2020,10,1) - 'Daily Trend'[Date]) * 1.
Or
Days to 10/01/2020 = (DATE(2020,10,1) - MAX('Daily Trend'[Date])) * 1.
HI @diogobraga2
I would use datediff https://docs.microsoft.com/en-us/dax/datediff-function-dax
ColumnDiff = DATEDIFF('Daily Trend'[Date] ), DATE(2020,01,10), DAY )
Hope it resolves your issue? Did I answer your question? Mark my post as a solution! Appreciate your Kudos, Press the thumbs up button!! Linkedin Profile |
@diogobraga2 - Try:
Days to 10/01/2020 = (DATE(2020,10,1) - 'Daily Trend'[Date]) * 1.
Or
Days to 10/01/2020 = (DATE(2020,10,1) - MAX('Daily Trend'[Date])) * 1.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
71 | |
68 | |
50 | |
31 |
User | Count |
---|---|
118 | |
100 | |
73 | |
65 | |
40 |