Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |