Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis distinct

Hi All,

I have the expression =Count({$<Type={'Weekly Contact'}>}[MeetingSubID]). How can I tweak this so that it counts on distinct MeetingSubID (This field has duplicates).

Thank you

H

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

=Count({$<Type={'Weekly Contact'}>} DISTINCT [MeetingSubID])

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

3 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

=Count({$<Type={'Weekly Contact'}>} DISTINCT [MeetingSubID])

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
its_anandrjs

Try like

=Count( DISTINCT  {$<Type={'Weekly Contact'}>}  [MeetingSubID])

Not applicable
Author

Perfect, thank you