Forum Discussion
SAGUILAR
2 years agoFrequent Visitor
New Column PBI
Hello, I have the following table and I would like to create a new column only with the numbers on red. Thanks!
- 2 years ago
=Table.FillDown(Table.AddColumn(PreviousStepName,"Custom",each if [Column1] is number and [Column2]=null and [Column3]=null then [Column1] else null),{"Custom"})
wdx223_Daniel
2 years agoCommunity Champion
=Table.FillDown(Table.AddColumn(PreviousStepName,"Custom",each if [Column1] is number and [Column2]=null and [Column3]=null then [Column1] else null),{"Custom"})
- SAGUILAR2 years agoFrequent Visitor
That worked. Thank you so much!!