Forum Discussion
Jeffery24
Helper I
7 years agoUsing 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
Community Champion
7 years agoNot exactly sure about your requirement, but could it be this?:
Table.AddColumn(#"Changed Type1", " Setup - Arrival EventA ", each Record.Field(_, #"Arrival EventA")
Jeffery24
Helper I
7 years agoHi 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.