Forum Discussion
CMC
5 years agoHelper 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://salesfo...
- 5 years ago
You can just add & "/view" on the end.
URL = "https://salesforce.com/" & '!My_Report'[Case Number] & "/view"
Regards,
Pat
Robbief
5 years agoHelper II
You can use the concatinate function; https://docs.microsoft.com/en-us/dax/concatenate-function-dax
- CMC5 years agoHelper I
thanks but isnt that just contatinating columns, /view isn't in a column