Forum Discussion
Calculated Column from Measure
- 2 years ago
The "Colleague Name" is from another column. However, I was able to resolve the issue by separating the filter.
IsDesiredCause =
'Colleague Events'[CAUSE2] IN {"didyoumeanAutomatic", "didyoumeanClick", "searchboxSubmit",
"searchboxAsYouType", "omniboxSearch", "omniboxAnalytics",
"omniboxFromLink", "omniboxField", "searchFromLink"}
Colleague Searches =
CALCULATE (
COUNT('Colleague Events'[SEARCH_ID]), ALLEXCEPT('Colleague Events', 'Colleague Events'[CAUSE2]), 'Colleague Events'[IsDesiredCause] = TRUE()
)
This gave the correct outputBest Regards
Saud Ansari
If this post helps, please Accept it as a Solution to help other members find it. I appreciate your Kudos!
Try this calculated column. The ALL calculate modifier is necessary to clear the filter context, and then apply the desired filter.
S =
CALCULATE (
COUNT ( 'Colleague Events'[SEARCH_ID] ),
ALL ( 'Colleague Events' ),
'Colleague Events'[CAUSE2]
IN {
"didyoumeanAutomatic",
"didyoumeanClick",
"searchboxSubmit",
"searchboxAsYouType",
"omniboxSearch",
"omniboxAnalytics",
"omniboxFromLink",
"omniboxField",
"searchFromLink"
}
)- saud9682 years agoMemorable Member
I tried unfortunately still getting the incorrect output
- Anonymous2 years agoNot applicable
S = CALCULATE ( COUNT ( 'Colleague Events'[SEARCH_ID] ), FILTER ( 'Colleague Events', 'Colleague Events'[Colleague Name] = EARLIER ( 'Colleague Events'[Colleague Name] ) && 'Colleague Events'[CAUSE2] IN { "didyoumeanAutomatic", "didyoumeanClick", "searchboxSubmit", "searchboxAsYouType", "omniboxSearch", "omniboxAnalytics", "omniboxFromLink", "omniboxField", "searchFromLink" } ) )If the following information cannot meet your requirement, can you provide some sample output you want?
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- saud9682 years agoMemorable Member
The "Colleague Name" is from another column. However, I was able to resolve the issue by separating the filter.
IsDesiredCause =
'Colleague Events'[CAUSE2] IN {"didyoumeanAutomatic", "didyoumeanClick", "searchboxSubmit",
"searchboxAsYouType", "omniboxSearch", "omniboxAnalytics",
"omniboxFromLink", "omniboxField", "searchFromLink"}
Colleague Searches =
CALCULATE (
COUNT('Colleague Events'[SEARCH_ID]), ALLEXCEPT('Colleague Events', 'Colleague Events'[CAUSE2]), 'Colleague Events'[IsDesiredCause] = TRUE()
)
This gave the correct outputBest Regards
Saud Ansari
If this post helps, please Accept it as a Solution to help other members find it. I appreciate your Kudos!