This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
I am using this Dax as a measure -
https://drive.google.com/file/d/1dGREcWSPPDGj8MBnQNAcqeKV_s1swcG5/view?usp=drivesdk - This one shows incorrect count when using the dax in calculated Column
Solved! Go to Solution.
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 output
Best 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"
}
)
Proud to be a Super User!
I tried unfortunately still getting the incorrect output
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.
Also, please accept it as a solution for me.
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 output
Best Regards
Saud Ansari
If this post helps, please Accept it as a Solution to help other members find it. I appreciate your Kudos!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 25 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 28 | |
| 23 | |
| 23 |