Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Elisa112
Helper V
Helper V

Link customer ID to source system customer record

Hi Experts 

Is it possible to link a customer ID from PBI to the source system

record for that customer and if so how is this done? Our CRM is 

off the shelf and not a microsoft product.

Thanks in advance

 

 

1 ACCEPTED SOLUTION

Create a new column

Customer URL =
"domain.com/editcustomer.aspx?nActionId=2&strRef=" & 'Table'[CustomerID]

View solution in original post

4 REPLIES 4
johnt75
Super User
Super User

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

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 

Create a new column

Customer URL =
"domain.com/editcustomer.aspx?nActionId=2&strRef=" & 'Table'[CustomerID]

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors