Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
106 | |
68 | |
48 | |
44 | |
42 |