Forum Discussion
Get the repeating names monthly
could you pls provide some sample data and expected output?
Thanks for the reply ryan_mayu
Sure, the data is like,
Training Name Month Attendee
Power BI March John
Power BI March William
power BI April Jack
Power Apps March Jack
Power Apps March henry
Result will be like
Month Training Name Result
March Power BI 2
April Power BI 2
March Power Apps 1
As the power Bi repeated in both march and april , it should be 2 and the power apps is in only one month so it should be 1
- ryan_mayu2 years ago
Super User
you can create a measure
Measure = CALCULATE(DISTINCTCOUNT('Table'[Month]),ALLEXCEPT('Table','Table'[Training Name]))- Radhika1232 years ago
Helper I
Thanks ryan_mayu for the reply
but I apply the same , I'm getting all the months upto december but my data is upto may only and the measure is showing 12 for all the trainings.Please check the snap shots below .please clarify why I am getting like thisAnd the measure I have given is same like as you have given
- ryan_mayu2 years ago
Super User
is the month column from the date table or fact table?