cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
tproost
Regular Visitor

count numbers in calculated row

Hi,

 

I have a table of Presence of certain employees at certain events.

for each event it will list the eventnumber and employee name in a row.

 

Richt now in the report i just count the occurences and it tells me for each employee how many events they attende within a filtered period of time.

EventEmployee
1a
1b
2a
2b
3b

 

The problem occurs when i try to list how may employees have attended how many events.

e.g.

 

# of events# of employees
31

2

1

1

0

We need this data because they are required to attend certain amount of events in a given period. this will help us track how many have not completed it.

 

Optimaly i find a sollution that still allows me to filter based on Time periods.

 

I have been looking at measures but I can't manage to get the correct output.

 

Thanks in advance.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@tproost, I think you Dynamic segmentation, refer example

Dynamic segmentation -Measure to Dimension conversion: https://youtu.be/gzY40NWJpWQ

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

The numbers shown in the result table seems wrong.  the number of people who attended 3 events should be 0.  Please show the expected result very clearly.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-yangliu-msft
Community Support
Community Support

Hi  @tproost ,

I created some data:

vyangliumsft_0-1675821306500.png

 

Here are the steps you can follow:

Way1
Set [Employee] to Count (Distinct)

vyangliumsft_1-1675821306501.png

Ways2:

Create measure.

Measure =
var _mindate=MINX(ALLSELECTED('Table'),[Date])
var _maxdate=MAXX(ALLSELECTED('Table'),[Date])
return
CALCULATE(
    DISTINCTCOUNT('Table'[Employee]),
FILTER(ALL('Table'),'Table'[Event]=MAX('Table'[Event])))

Result:

vyangliumsft_2-1675821306502.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

amitchandak
Super User
Super User

@tproost, I think you Dynamic segmentation, refer example

Dynamic segmentation -Measure to Dimension conversion: https://youtu.be/gzY40NWJpWQ

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors