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

See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap

Reply
CMC
Helper I
Helper I

Custom WEB URL

I have a current measure which has been working well and directs me to a customer URL based on case number raised. e.g.

URL = "https://salesforce.com/" & '!My_Report'[Case Number]  - https://salesforce.com.com/Case/XXXXXXXXX

 

Now I noticed the backend URL has changed to https://salesforce.com.com/r/Case/XXXXXXXXX/view

 

How can I amend /view onto the end of the URL after the Case Number has been injected?

 

 

1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

You can just add   & "/view"   on the end.

 

URL = "https://salesforce.com/" & '!My_Report'[Case Number] & "/view"

 

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

5 REPLIES 5
mahoneypat
Microsoft Employee
Microsoft Employee

You can just add   & "/view"   on the end.

 

URL = "https://salesforce.com/" & '!My_Report'[Case Number] & "/view"

 

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Hi pat,

 

can you please help us to resolve below requirment.

Ex: we want to create URL only for Dev,Prod,QA (we followed above Measure which you have shared it is working fine but we are getting URL for Sandbox as well but we don't want that)

 

We are getting like below but we want to create URL only for Devlopment,Quality,Production because we don't have any URL for Sandbox

Type                  WorkON ID           URL

Sandbox            Sandbox             https://myworld.com/Sandbox

Devopment       Cloud-19            https://myworld.com/Cloud-19

Production        Cloud-21            https://myworld.com/Cloud-21

Quality              Cloud-2              https://myworld.com/Cloud-2

Sandox              Sandbox             https://myworld.com/Sandbox

Quality              Cloud-1              https://myworld.com/Cloud-1

Devlopment     Cloud-420           https://myworld.com/Cloud-420

 

      

thanks Pat, knew it was simple!

Robbief
Helper II
Helper II

You can use the concatinate function; https://docs.microsoft.com/en-us/dax/concatenate-function-dax 

thanks but isnt that just contatinating columns,  /view isn't in a column 

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.