Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
i have a table
Event Id | Date | |
---|---|---|
121 |
| |
122 |
| |
123 |
|
i need to count event ids with unique Date, in the above example it should return 2
so you can add
count(distinct Date&[event name])
basicly i would prefer not using set analysis in my expressions
try to keep it as simple as possible
hi try
count(distinct Date)
that would return desired count but i want to count eventids due to other limitations
i have a table
Event Id | event name | Date | |||
---|---|---|---|---|---|
121 | abc |
| |||
122 | abc |
| |||
123 | abc |
| |||
124 | xyz |
|
in this table event 'abc' occured twice and 'xyz' occured once , so now the expression should return count of events 3
so you can add
count(distinct Date&[event name])
basicly i would prefer not using set analysis in my expressions
try to keep it as simple as possible
This is snap of a straight table.