Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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", "")
Solved! Go to Solution.
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
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
7 | |
4 | |
3 | |
2 | |
1 |
User | Count |
---|---|
7 | |
6 | |
6 | |
4 | |
3 |