简体   繁体   中英

Create a new Data time Column by combining separate Date and Time Column

I have a table with separate Date and Time columns. And I would like to combine both Date and Time into one DateTime Column.

I found a similar thread to combine using Power Query. But I can't see date and time table in edit query. Please help me with a calculated column to combine date and time.

Thanks.

You can simply add them together assuming Date is a date data type and Time is a time data type.

DateTime = Dates[Date] + Dates[Time]

计算列

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM