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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
L25
Regular Visitor

Stripping out the query string in a URL returning blank

Hello, I am trying to strip out everything including and after the ? from my url [page_location] to report on page usage, I am also stripping out my own website address to shorten the result.

 

eg in the below random website example url

https://ortc.com.au/products/logo-quarter-zip-charcoal?variant=41124690722934

all that would be left is 

/products/logo-quarter-zip-charcoal

 

My query, which is a result partly of these forums and our chatgpt friend, is below but keeps returning blanks for every result. If anyone has any ideas I would be extremely grateful!

 

Page Path =

VAR Destringed_Page_Loc =

    IF(

        CONTAINSSTRING(Query1[page_location], "?"),

        LEFT(Query1[page_location], SEARCH("?", Query1[page_location]) - 1),

        Query1[page_location]

    )

RETURN SUBSTITUTE(Destringed_Page_Loc, "https://www.myurl.com.au", "")

1 ACCEPTED SOLUTION
aduguid
Super User
Super User

Try this revised DAX.

 

Extract Before Question = 
VAR _search = "?"  // Define the character to search for in the URL
VAR _replace = "|"  // Define a replacement character for the question mark
VAR _url_replace = SUBSTITUTE(MAX(Query1[page_location]), _search, _replace)  // Replace the "?" with "|" in the page location (URL)
VAR _url = _url_replace  // Assign the modified URL to a new variable
VAR _position = SEARCH(_replace, _url, 1, LEN(_url))  // Find the position of the replaced character in the URL
VAR _result = LEFT(_url, _position - 1)  // Extract the portion of the URL before the "|" character (excluding it)
VAR _debug = "URL: " & _url & " | Search Pos: " & _position // Debugging output to see the URL and position of the replacement character

RETURN
_result

 

 

 

View solution in original post

1 REPLY 1
aduguid
Super User
Super User

Try this revised DAX.

 

Extract Before Question = 
VAR _search = "?"  // Define the character to search for in the URL
VAR _replace = "|"  // Define a replacement character for the question mark
VAR _url_replace = SUBSTITUTE(MAX(Query1[page_location]), _search, _replace)  // Replace the "?" with "|" in the page location (URL)
VAR _url = _url_replace  // Assign the modified URL to a new variable
VAR _position = SEARCH(_replace, _url, 1, LEN(_url))  // Find the position of the replaced character in the URL
VAR _result = LEFT(_url, _position - 1)  // Extract the portion of the URL before the "|" character (excluding it)
VAR _debug = "URL: " & _url & " | Search Pos: " & _position // Debugging output to see the URL and position of the replacement character

RETURN
_result

 

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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