Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Syndicate_Admin
Administrator
Administrator

My tables become outdated when I change Month.

Duda.png

MY problem is that they lost the months of onset when they accumulate what they enter.

1 ACCEPTED SOLUTION
AllisonKennedy
Super User
Super User

@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:

 

OPTION A: Select all dates in this current year

AllisonKennedy_0-1633134002297.png

Click OK. 

OPTION B: Select all dates from January 1, 2021 until today:

AllisonKennedy_1-1633134082709.png

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()))

AllisonKennedy_2-1633134153634.png

 

OPTION C: Edit your SQL statement

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)

Please @mention me in your reply if you want a response.

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

View solution in original post

1 REPLY 1
AllisonKennedy
Super User
Super User

@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:

 

OPTION A: Select all dates in this current year

AllisonKennedy_0-1633134002297.png

Click OK. 

OPTION B: Select all dates from January 1, 2021 until today:

AllisonKennedy_1-1633134082709.png

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()))

AllisonKennedy_2-1633134153634.png

 

OPTION C: Edit your SQL statement

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)

Please @mention me in your reply if you want a response.

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

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.