cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
PCorbitt
Frequent Visitor

Quotation Marks in DAX Measure for URL

Hello everyone!

I'm trying to write DAX code to return a measure which includes a SELECTEDVALUE formula to return a URL. Currently this simple formula is just the PBI Service page web address plus the rptfilter - SELECTEDVALUE('Directory'[FullName]). Unfortunately, that doesn't work (apparently because there's a space within the value between first and last name), because if I go to the browser and manually type %27John%20Doe%27 at the end of the URL it DOES! So my question is how surround the FullName with those single quotation marks in my formula? Seems like this should be a simple fix. Thoughts?

1 ACCEPTED SOLUTION

You need to add this part marked in red into your DAX formula:

 

Filtered URL Pass =
var rptfilter = "Directory/FullName eq "&"'"&SELECTEDVALUE('Directory'[FullName])&"'"
return
rpturl&rptfilter

View solution in original post

5 REPLIES 5
poweringthru
Helper I
Helper I

In DAX you append strings using the & operator.


So you can create a new measure like this:

 

 

FullNameInSingleQuotes = "'"&SELECTEDVALUE('Directory'[FullName])&"'"

 

 

Does this solve the need?

Cheers!

Thank you, powerthru. I'm sure this will work! I'm just not sure how to incorporate your solution into my DAX formula. Currently it reads:

 

 

Filtered URL Pass =
var rptfilter = "Directory/FullName eq "&SELECTEDVALUE('Directory'[FullName])
return
rpturl&rptfilter
 
This formula returns the following URL link:
https://app.powerbi.com/groups/me/reports/587ce61e+d2bd-43b6-b5d4-83d9e84676fc1a4fd29OdO4c1299e?expe... _ Directory/FullName eq (followed by the SELECTEDVALUE currently returning as John Doe, but needs to be 'John Doe' to work).
 
Please let me know what I need to change. 
Thanks SO much!

You need to add this part marked in red into your DAX formula:

 

Filtered URL Pass =
var rptfilter = "Directory/FullName eq "&"'"&SELECTEDVALUE('Directory'[FullName])&"'"
return
rpturl&rptfilter

It WORKS! Thank you so much for your solution! 

NaveenGandhi
Super User
Super User

Hello @PCorbitt 

Can you post sample data to understand this better?


Regards,

Naveen

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors