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.
Hello!
Help me please. How filter table in power query to get all rows where Mydate < last day of previous month?
That possible with Date.EndOfMonth? Like this:
#"Filter1" = Table.SelectRows(#"Filter0", each Date.EndOfMonth(.....))
Thank you advance
Hello @aignn
were you able to solve the problem with any reply given?
If so, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
All the best
Jimmy
Hello @aignn
try something like this (not tested!)
#"Filter1" = Table.SelectRows(#"Filter0", each [Mydate]< Date.EndOfMonth(Date.AddMonths(DateTime.LocalNow(),-1)))
If this post helps or solves your problem, please mark it as solution.
Kudos are nice to - thanks
Have fun
Jimmy