Forum Discussion
Anonymous
5 years agoNot applicable
Concatenate URL in Power Query
Hi Experts I am trying to concatenate the following URL with the [ID] Column in my table in Poqwer Query https://XXX.sharepoint.com/sites/XXX/Lists/LISTNAME/DispForm.aspx?ID
- 5 years ago
Anonymous , In case you are trying to create a new column
New column = "https://XXX.sharepoint.com/sites/XXX/Lists/LISTNAME/DispForm.aspx?" & [ID]
or
New column = Text.Combine({"https://XXX.sharepoint.com/sites/XXX/Lists/LISTNAME/DispForm.aspx?" ,[ID]})
amitchandak
5 years agoSuper User
Anonymous , In case you are trying to create a new column
New column = "https://XXX.sharepoint.com/sites/XXX/Lists/LISTNAME/DispForm.aspx?" & [ID]
or
New column = Text.Combine({"https://XXX.sharepoint.com/sites/XXX/Lists/LISTNAME/DispForm.aspx?" ,[ID]})
Anonymous
5 years agoNot applicable
Hi Amit getting the following error...see images
image 2