willow1985
Well-known Member
- Joined
- Jul 24, 2019
- Messages
- 915
- Office Version
- 365
- Platform
- Windows
I am brand new to Power BI. I would consider myself a advanced user in excel but am struggling getting started with Power BI.
I just converted/made a new column for dates that were converted from Unixtime (was not easy to figure out). Now I just need to add a filter to only bring in the last 5 years including the current year.
I cant seem to get the current year. How would I modify this DAX formula to include the current year as well?
Any help would be greatly appreciated!
I just converted/made a new column for dates that were converted from Unixtime (was not easy to figure out). Now I just need to add a filter to only bring in the last 5 years including the current year.
I cant seem to get the current year. How would I modify this DAX formula to include the current year as well?
Power Query:
= Table.SelectRows(#"Changed Type", each Date.IsInPreviousNYears([Date Received], 5))
Any help would be greatly appreciated!