Forum Discussion
jamieham
Helper II
6 years agoCreating New column by copying specific data from one column to another
I'm trying to create new colums for Carry Metres and Kick Metres based on a data set that looks like below. I need to copy the Carry Metres into a seperate column and the same with the Kick Metres an...
- 6 years ago
Hi , jamieham
Try to create calculated column as below:
Carry_Metres = IF(Table_basic[Action]="Carry",Table_basic[Metres],BLANK())Kick_Metres = IF(Table_basic[Action]="Kick",Table_basic[Metres],BLANK())For more details,please refer to the sample file.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
Hi jamieham
I would go to Power Query editor
Select these two columns
On the transform menu --> Pivot(Hope you have other columns in this table otherwise it will error out)