Forum Discussion
Link customer ID to source system customer record
- 1 year ago
Create a new column
Customer URL = "domain.com/editcustomer.aspx?nActionId=2&strRef=" & 'Table'[CustomerID]
It depends on the URL structure of your CRM. If it is something like domain.com/customer/1234 or domain.com/page?cust=1234 then you can do it.
Create a column, either in Power Query or in DAX which appends the base URL for the page with the customer ID. Change the category of the column to Web URL, and then you can put the column into a table visual which will link to your CRM. In the settings of the table visual you can switch URL Icon on, which just leave a small link icon rather than a potentially long URL
- Elisa1121 year ago
Helper V
The url looks like this
domain.com/editcustomer.aspx?nActionId=2&strRef=CustomerID, so I believe the link can be done. I am not clear what dax is required, can you provide an example please?
many thanks
- johnt751 year ago
Super User
Create a new column
Customer URL = "domain.com/editcustomer.aspx?nActionId=2&strRef=" & 'Table'[CustomerID]- Elisa1121 year ago
Helper V
Thank you, I watched a couple dynamic linking videos as well, had to adjust the URL slightly but all works perfectly.
thank you for the guidance, much appreciated