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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a table with a start date and end date and other information.
I wanted to show every day between the start and end dates.
Can I do this in DAX?
The end date of the second line is wrong (2020).
-----
In Power Query, add a new column like this:
{Number.From([START_DATE])..Number.From([END_DATE])}
then expand the new column (from the header) to new rows .
Then change the column type to date.
Good luck.
Hi, HotChilli
Thanks for the help but i am in directquery data connectivity mode via oracle database and adding column only allows in import mode.
Is there a way to do it by directquery? Probably not, right? I would have to do something similar in the query from database?