Forum Discussion
Anonymous
3 years agoNot applicable
How do I do an end date in Power Query?
Hello! Here is my power query. However, I am unsure how to do a date range from 11/21/2022 to just a specific date (like 2/27/2023). Can I change this line in my power query to do that? {Cube.Ap...
ppm1
3 years agoSolution Sage
Try this instead
{Cube.ApplyParameter, "DateRange", {#date(2022, 11, 21), #date(2023,2,27)}},
Pat