Forum Discussion
Jeffery24
7 years agoHelper I
Using variables in custom column with power query
Hi, Am new to power query and struggling to find an answer to my issue of a variable lookup column. In my dataset I have lot's of freight shipment data containing date fields, there are subseque...
- 7 years ago
Not exactly sure about your requirement, but could it be this?:
Table.AddColumn(#"Changed Type1", " Setup - Arrival EventA ", each Record.Field(_, #"Arrival EventA")
ImkeF
7 years agoCommunity Champion
Not exactly sure about your requirement, but could it be this?:
Table.AddColumn(#"Changed Type1", " Setup - Arrival EventA ", each Record.Field(_, #"Arrival EventA")
Jeffery24
7 years agoHelper I
Hi Imke,
You saved my week! It was just missing a bracket off end :smileyhappy:
Table.AddColumn(#"Changed Type1", " Setup - Arrival EventA ", each Record.Field(_, #"Arrival EventA"))
Thanks so much, really appreciate it.