The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I have a dataset with dates for each day of a given period. I'm trying to filter and only keep rows where the event date = the last date of the given month.
How do I perform that in PowerQuery (Doing it in DAX after data is loaded is not an option)?
Solved! Go to Solution.
You can use the GUI function in the columns tab, under Date, to add and End of the Month column, then use
Table.SelectRows(PriorStep, each [Date] = [EndOfMonth])
--Nate
You can use the GUI function in the columns tab, under Date, to add and End of the Month column, then use
Table.SelectRows(PriorStep, each [Date] = [EndOfMonth])
--Nate