The main consideration about which dimension to breakdown by is whether the values of the dimensions had been tracked together in the same hit.
- Props can only report values with hits where the values were set.
- eVars can report values that weren't necessarily set with hits. Instead, eVar values are determined by the combination of the eVar's allocation and expiration settings.
Here's an example:
(where eVar1's allocation = "Most Recent", expiration = "Visit")
- Hit 1 (pageview): Page = A, eVar1 = page section X
- Hit 2 (custom link): Link Name = foo, prop1 = main_menu
With just these 2 hits, you can report the following:
- Page "A": Pageviews = 1, Occurrences = 1, Visits = 1
- prop1 "main_menu" instances = 1, Occurrences = 1, Visits = 1
- eVar1 "page section X" instances = 1, Occurrences = 2, Visits = 1
And the following breakdowns are valid:
- Page x eVar1 - because of Hit 1
- Link Name x prop1 - because of Hit 2
- Link Name x eVar1 - because of Hit 2 and also the eVar set in Hit 1
Hope that helps you get started!