• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Need a formulae

isabelly1122

New Member
In column C I have a list of matches with leagues name and kick off time . I need a formula that copy&paste those league names in column D without kick off times. Only league name
 

Attachments

  • names.xlsx
    8.7 KB · Views: 6
Using Power Query
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"World (FIFA),Fifa Club World Cup", type any}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each Value.Is(Value.FromText([#"World (FIFA),Fifa Club World Cup"]), type number)),
#"Filtered Rows" = Table.SelectRows(#"Added Custom", each ([Custom] = false)),
#"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"Custom"})
in
#"Removed Columns"


How to paste code with power query
 
Using Power Query
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"World (FIFA),Fifa Club World Cup", type any}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each Value.Is(Value.FromText([#"World (FIFA),Fifa Club World Cup"]), type number)),
#"Filtered Rows" = Table.SelectRows(#"Added Custom", each ([Custom] = false)),
#"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"Custom"})
in
#"Removed Columns"


How to paste code with power query
Can it be done using a formulae?
 
isabelly1122
About Your need as You written in #4:
I need a formula that copy&paste those league names in column D without kick off times. Only league name
Your column D has texts and times
Your column E has texts.
What really You would need to get? ... and where?
 
isabelly1122
Isn't this same as Your other thread?
 
Back
Top