Forum Discussion
GokilaRaviraj
Helper II
1 year agoCopy and paste entire colum value to another column
Hi , Currently my table data looks like below Since we are in October, It shows months from Oct to Next year Dec. From Next month It shows months from Nov to Next year dec. This input value colu...
- 1 year ago
May be
= if List.Contains(Table.ColumnNames(#"Replaced Value"),"Mar-CFY")
then Table.ReplaceValue(#"Replaced Value", each [#"Mar-CFY"], each [Value], Replacer.ReplaceValue, {"Mar-CFY"})
else #"Replaced Value"Stéphane
- 1 year ago
slorin
Super User
1 year agoMay be
= if List.Contains(Table.ColumnNames(#"Replaced Value"),"Mar-CFY")
then Table.ReplaceValue(#"Replaced Value", each [#"Mar-CFY"], each [Value], Replacer.ReplaceValue, {"Mar-CFY"})
else #"Replaced Value"
Stéphane
- GokilaRaviraj1 year ago
Helper II