Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
My source like below...
Client Name | Event Type | Meeting Type Code | Meeting id |
xxx | Roadshow | 1X1 | 1000H |
aaa | NDM | 2X1 | 1001H |
yyy | Office | 1X1 | 100H |
aaa | Non Deal Management | 3X1 | 1002H |
xxxx | Roadshow | 1X1 | 10004H |
yyy | office | Grp | 1000H |
I need No of meeting based on the Client ...i
Use Dim: ClinetName
Measure: count(MeetingID) or count(MeetingTypeCode)
Straight table:
Dimension: [Client Name]
Exp: Count(Distinct [Meeting id] )
But here All Event types is not calculated(Roadshow)
what is the exact output you want to see?
i tried below logic
=Aggr( Count({<[Event Date]={">=$(=Date(vStartDate,'MM/DD/YYYY'))<=$(=Date(vEndDate,'MM/DD/YYYY'))"},[Event Type]={'Non Deal Management',Office', 'Road show'}>} [Meeting Id]),[Client Name])
but i am not getting excatly count based on the client
but some client meeting count is matched.
Provide some data
Is this in a text box object? May you need to add an outer aggregation?
Sum({<[Event Date]={">=$(=Date(vStartDate,'MM/DD/YYYY'))<=$(=Date(vEndDate,'MM/DD/YYYY'))"},[Event Type]={'Non Deal Management',Office', 'Road show'}>} Aggr(Count({<[Event Date]={">=$(=Date(vStartDate,'MM/DD/YYYY'))<=$(=Date(vEndDate,'MM/DD/YYYY'))"},[Event Type]={'Non Deal Management',Office', 'Road show'}>} [Meeting Id]),[Client Name]))