How do I count the domain name only and not have it count by domain and query string?

You’ll want to create a calculated column that extracts just the domain name from the full URL, then use that calculated column in your visual instead of the original one. You can probably extract the domain name using the split function, either splitting on / or ? depending on whether it’s the path or query string that you’re trying to strip off.

1 Like