Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
ahadi063
New Member

Need Help

Dear community! 

 

I need your kind help with something. I need to create a date column and associate hour column for a calendar look up. Is there a quick way to do this? For example, this is what I need:

 

Date:

11/01/2016 12:00 AM

11/01/2016 01:00 AM

11/01/2016 02:00 AM

11/01/2016 03:00 AM

....

Thank you for your help!!

1 REPLY 1
MarcelBeug
Community Champion
Community Champion

It's not clear if you are looking for a DAX or Power Query solution.

 

The query below generates a table with 1000 rows with datetimes, starting November 1, 2016 (it's not clear if your examples are November 1 or January 11), next I used Split Column to split on the left most space. I adjusted the generated code with regard to the column names.

 

let
    Source = #table(type table[Datetime = datetime],List.Zip({List.DateTimes(#datetime(2016,11,1,0,0,0),1000,#duration(0,1,0,0))})),
    #"Split Column by Delimiter" = Table.SplitColumn(Table.TransformColumnTypes(Source, {{"Datetime", type text}}, "en-US"), "Datetime", Splitter.SplitTextByEachDelimiter({" "}, QuoteStyle.Csv, false), {"Date", "Time"}),
    #"Changed Type" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Date", type date}, {"Time", type time}})
in
    #"Changed Type"

 

Specializing in Power Query Formula Language (M)

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.