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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello There,
I seek your assistance please guys.
I’ve a column of dates, they are not continuous dates, so, if I want to create a custom column of a list of dates that starts from the oldest date in the column Dates till the most recent date in the column Dates, how could I do that?
The current data set is just one column called Dates.
Solved! Go to Solution.
The cleanest way (rather, the way I like to do it) is to get the Min Date and Max Date as two separate values in two separate queries. Then turn them into numbers. Then make a list starting at first number and ending at last number. Finally, use Date.From to transform the list.
let
MaxDate = Number.From(List.Max(Table[DateColumn])),
MinDate =Number.From(List.Min(Table[DateColumn])),
DateList = List.Transform({MinDate..MaxDate}, Date.From)
--Nate
@Anonymous
Or if you need a dax method which is also simple. lets say if you have a Table[date] column is continuous.
You can just create a table.
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@Anonymous
Or if you need a dax method which is also simple. lets say if you have a Table[date] column is continuous.
You can just create a table.
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
The cleanest way (rather, the way I like to do it) is to get the Min Date and Max Date as two separate values in two separate queries. Then turn them into numbers. Then make a list starting at first number and ending at last number. Finally, use Date.From to transform the list.
let
MaxDate = Number.From(List.Max(Table[DateColumn])),
MinDate =Number.From(List.Min(Table[DateColumn])),
DateList = List.Transform({MinDate..MaxDate}, Date.From)
--Nate
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 14 | |
| 12 | |
| 10 | |
| 7 | |
| 6 |