Solved! Go to Solution.
Hello @Anonymous
Give this a try, you will just need to change the table and column names to match your data.
Filtered Sales = CALCULATETABLE( Sales, DATESBETWEEN ( Sales[Sales Date], DATE(2019,1,15), DATE(2019,2,5) ) )
This creates a new table called 'Filtered Sales' that is the Sales table filtered to 1/15/2019 - 2/5/2019
Hi @Anonymous ,
You can set date range directly.
Table = VAR DateStart = DATE ( "2018", "1", "5" ) VAR DateEnd = DATE ( "2018", "1", "15" ) RETURN CALCULATETABLE ( TEST, FILTER ( TEST, TEST[Date] <= DateEnd && TEST[Date] >= DateStart ) )
Or you can set a start time and time interval to define your date range.
Table 2 = VAR DateStart = DATE ( "2018", "1", "1" ) RETURN CALCULATETABLE ( TEST, DATESINPERIOD ( TEST[Date], DateStart, 15, DAY ) )
You can define the time interval by day, month, season, year. Here is the documentation for DATESINPERIOD() function.
https://docs.microsoft.com/en-us/dax/datesinperiod-function-dax
These two DAX queries return a same table. You can choose one of them.
Here is my test file, you can click the following link and download it.
Best Regards,
Eads
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello @Anonymous
Give this a try, you will just need to change the table and column names to match your data.
Filtered Sales = CALCULATETABLE( Sales, DATESBETWEEN ( Sales[Sales Date], DATE(2019,1,15), DATE(2019,2,5) ) )
This creates a new table called 'Filtered Sales' that is the Sales table filtered to 1/15/2019 - 2/5/2019
Thank you so much! Your method worked for me
Featured Session: Drive Data Culture with Power BI- Vision, Strategy & Roadmap. Register here https://myignite.microsoft.com #MSIgnite #PowerPlatform #Power BI
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
453 | |
181 | |
110 | |
61 | |
50 |
User | Count |
---|---|
433 | |
173 | |
122 | |
75 | |
73 |