Forum Discussion
benjamin_sasin
Resolver I
6 years agoAdd hours to existing column
Hi, I've got a whole sequence of steps in Power Query and already a bunch of pivot tables connected to the data. I found out that the time input is wrong and believes it's in my current time zone (bu...
- 6 years ago
You can add this step.
Replace text in "red font" with your previous step's name
= Table.TransformColumns(#"Changed Type",{"create_user_date", each _ + #duration(0,7,0,0)})
benjamin_sasin
Resolver I
6 years agoOkay it's working! Thanks.
What's the underscore for in = Table.TransformColumns(#"Source", {"user_create_date", each _ + #duration(0,7,0,0)})?
Zubair_Muhammad
Community Champion
6 years ago
_ is the value that is passed as parameter to the function.
In Table.TransformColumns function it is the intersection of current row and Column you have chosen
Another example, If you simply create a new custom column as follows...it will return you the current row as records
= _
- benjamin_sasin6 years ago
Resolver I
This is weird syntax, but why not. Thanks!