The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
MY problem is that they lost the months of onset when they accumulate what they enter.
Solved! Go to Solution.
@Anonymous
I would do this in Power Query, so instead of using the Advanced SQL code, leave that blank, click 'Transform Data' to open Power Query Editor in Power BI.
Click Home tab > Choose Columns.
Select the same columns that are in your SQL SELECT statement.
Now click the filter arrow for the [time] column and set Filter to Date Filters > Custom Filter and set your filter options in Power Query. You can do a few different things, depending on your goal:
Click OK.
Click OK.
Edit the Formula to replace #date(2021, 10, 2) with Date.From(DateTime.LocalNow())
= Table.SelectRows(#"Changed Type", each [Starttime] >= #date(2021, 1, 1) and [Starttime] <= Date.From(DateTime.LocalNow()))
SQL is not my strongest language, thus why I said I would do this in Power Query, but you could update your SQL statement to use DATEFROMPARTS instead of DATEADD to fix it to January. https://docs.microsoft.com/en-us/sql/t-sql/functions/datefromparts-transact-sql?view=sql-server-ver15
@StartDate = DATEFROMPARTS(2021, 01, 01)
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@Anonymous
I would do this in Power Query, so instead of using the Advanced SQL code, leave that blank, click 'Transform Data' to open Power Query Editor in Power BI.
Click Home tab > Choose Columns.
Select the same columns that are in your SQL SELECT statement.
Now click the filter arrow for the [time] column and set Filter to Date Filters > Custom Filter and set your filter options in Power Query. You can do a few different things, depending on your goal:
Click OK.
Click OK.
Edit the Formula to replace #date(2021, 10, 2) with Date.From(DateTime.LocalNow())
= Table.SelectRows(#"Changed Type", each [Starttime] >= #date(2021, 1, 1) and [Starttime] <= Date.From(DateTime.LocalNow()))
SQL is not my strongest language, thus why I said I would do this in Power Query, but you could update your SQL statement to use DATEFROMPARTS instead of DATEADD to fix it to January. https://docs.microsoft.com/en-us/sql/t-sql/functions/datefromparts-transact-sql?view=sql-server-ver15
@StartDate = DATEFROMPARTS(2021, 01, 01)
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
111 | |
79 | |
71 | |
48 | |
41 |
User | Count |
---|---|
138 | |
108 | |
71 | |
64 | |
58 |