Custom Column

Guinaba

Board Regular
Joined
Sep 19, 2018
Messages
217
Office Version
  1. 2016
Platform
  1. Windows
Hi guys,

I am creating a simple custom column:

Power Query:
([A]-[B])/7
, however the data type after creating is Any. The standard way would be to change the data type adding the next step, however I'd like to know whether is possible to include this step within the custom column? Do I have to create a variable? For instance:

Something like:
Power Query:
let
A=([A]-[B])/7,
= Table.TransformColumnTypes(#"Offset Weeks",{{A, Int64.Type}})

Regards
 
Last edited by a moderator:

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
The last argument to Table.AddColumn is the column type so you can specify it in that line
 
Upvote 0
After you create your Custom Column that includes your formula of ([A ]-[B ])/7, once it loads, the full step will look like this:
Power Query:
= Table.AddColumn(#"Offset Weeks", "New Custom Column", each ([A]-[B])/7)
As @RoryA stated, the last argument is where you can make the change, so that is the last bit that follows your formula.
Power Query:
= Table.AddColumn(#"Offset Weeks", "New Custom Column", each ([A]-[B])/7, Int64.Type)
 
Upvote 0
Solution

Forum statistics

Threads
1,215,135
Messages
6,123,239
Members
449,093
Latest member
Vincent Khandagale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top