Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Here's what I did for the end date (initially)
Table.TransformColumnTypes(Table.AddColumn(#"Changed column type", "endDate", each Date.AddDays(DateTime.LocalNow(), 30)), {{"endDate", type date}})I now want the end date to be set to the end of the current quarter... tried a few things, but no joy. I'm convinced it must be easy, but it's escaping me at the moment.
Solved! Go to Solution.
Sorted
Table.AddColumn(#"Changed column type", "endDate", each Date.EndOfQuarter(DateTime.LocalNow()), type date)
Sorted
Table.AddColumn(#"Changed column type", "endDate", each Date.EndOfQuarter(DateTime.LocalNow()), type date)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.