Forum Discussion
Anonymous
4 years agoNot applicable
Adding a second Filter to a Calculate function
Hey guys,
I've got the following DAX formula:
Visits My Pension = CALCULATE(
DISTINCTCOUNT('OD - All Page Visits Portal'[VISIT_ID]),
FILTER('OD - All Page Visits Portal','OD - All Page Visits Portal'[PAGE_HOSTNAME]="my.pension.nl")
)
I'd like to add a second page to the filter: All Page Visits Portal'[PAGE_HOSTNAME]="my.pension.nl#"
So all the visit_id's of both pages are calculated. How can I add the second filter?
I'd like to add a second page to the filter: All Page Visits Portal'[PAGE_HOSTNAME]="my.pension.nl#"
So all the visit_id's of both pages are calculated. How can I add the second filter?
Anonymous ,
Visits My Pension = CALCULATE(
DISTINCTCOUNT('OD - All Page Visits Portal'[VISIT_ID]),
FILTER('OD - All Page Visits Portal','OD - All Page Visits Portal'[PAGE_HOSTNAME] in { "my.pension.nl", "my.pension.nl#" } ) )
)
2 Replies
- amitchandakSuper User
Anonymous ,
Visits My Pension = CALCULATE(
DISTINCTCOUNT('OD - All Page Visits Portal'[VISIT_ID]),
FILTER('OD - All Page Visits Portal','OD - All Page Visits Portal'[PAGE_HOSTNAME] in { "my.pension.nl", "my.pension.nl#" } ) )
) - AnonymousNot applicable
Anonymous ,
can also do thisVisits My Pension = CALCULATE(DISTINCTCOUNT('OD - All Page Visits Portal'[VISIT_ID]),FILTER('OD - All Page Visits Portal','OD - All Page Visits Portal'[PAGE_HOSTNAME]="my.pension.nl" || 'OD - All Page Visits Portal'[PAGE_HOSTNAME]="my.pension.nl#"))