Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Question | Hello All, I am using Power Query Editor to check over the data and add a Custom Column that is going to be Type:WebURL. It will be used to open a Ticketing Tool Search Page and insert the ticket number. Thank you for your help as always. E M |
Action | Add Custom Column |
Formula used | "company.website/forms/xxxxxxx = "& [ticket_number] |
Display showed in PowerQ | company.website/forms/xxxx = TICKET0000311 |
Requesting your kind help on | How can you add " " to the ticket number on the Power Query Formula? |
Result expected | company.website/forms/xxxx = "TICKET000031" |
|
|
Solved! Go to Solution.
Hi @_eteamidc ,
Have you tried the following:
"company.website/forms/xxxxxxx = " & """" & [ticket_number] & """"
Pete
Proud to be a Datanaut!
Hi @_eteamidc ,
Have you tried the following:
"company.website/forms/xxxxxxx = " & """" & [ticket_number] & """"
Pete
Proud to be a Datanaut!
Pete, first Thank you! I tried many ways to add more and take away the "" marks ... but
this was my last try
& "" &"[ticket_number]"&""