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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
M-M-P
Helper III
Helper III

Column calculation in Query Editor

Hi everyone

In the Query Editor I have a column with Timestamps and in another column I have a number.

See the picture below.

UTC Local 01.png

That number is the hour offset I want to plus into the timestamp. 

The result should look like this:

UTC Local 02.png

I can create a new column where I do the calculation with this command = [Timestamp] + #duration (0, [Hours Offset], 0.0)

But is it possible to do the calculation in the original column?

 

Thanks in advance

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Hi @M-M-P 

 

Credit to @ImkeF for this method using Table.ReplaceValue (post here)

 

Rather than adding a new column, put this in the formula bar (where PreviousStep is the name of your previous query step):

 

= Table.ReplaceValue(PreviousStep, each [Timestamp], each [Timestamp]+#duration(0,[Hours Offset],0,0), Replacer.ReplaceValue, {"Timestamp"})

 

This has the side-effect of discarding the column type of Timestamp.

 

To avoid losing the column type, you can use this code instead:

 

= Value.ReplaceType(Table.ReplaceValue(PreviousStep, each [Timestamp], each [Timestamp]+#duration(0,[Hours Offset],0,0), Replacer.ReplaceValue, {"Timestamp"}), Value.Type(PreviousStep))

 

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

View solution in original post

2 REPLIES 2
OwenAuger
Super User
Super User

Hi @M-M-P 

 

Credit to @ImkeF for this method using Table.ReplaceValue (post here)

 

Rather than adding a new column, put this in the formula bar (where PreviousStep is the name of your previous query step):

 

= Table.ReplaceValue(PreviousStep, each [Timestamp], each [Timestamp]+#duration(0,[Hours Offset],0,0), Replacer.ReplaceValue, {"Timestamp"})

 

This has the side-effect of discarding the column type of Timestamp.

 

To avoid losing the column type, you can use this code instead:

 

= Value.ReplaceType(Table.ReplaceValue(PreviousStep, each [Timestamp], each [Timestamp]+#duration(0,[Hours Offset],0,0), Replacer.ReplaceValue, {"Timestamp"}), Value.Type(PreviousStep))

 

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

@OwenAuger 
Thanks a lot, it does exactly what I wanted 😄

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.