The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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]"&""