This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello, it is likely that there is some post where this topic has already been discussed, but after several days searching I have not found anything that has helped me to solve the problem.
I have a table where 3 columns appear (OPERATOR, MANUFACTURED ARTICLE AND DATE) as I show in the table below
| Operator Name | Article | Date |
| Borja | A | 01-Apr-22 |
| Jon | A | 01-Apr-22 |
| Asier | A | 01-Apr-22 |
| Ricardo | B | 01-Apr-22 |
| Iñaki | C | 01-Apr-22 |
| Cristina | D | 01-Apr-22 |
| Gorka | C | 01-Apr-22 |
| Asier | A | 02-Apr-22 |
| Borja | D | 02-Apr-22 |
| Cristina | B | 02-Apr-22 |
| Ricardo | A | 02-Apr-22 |
| Iñaki | B | 03-Apr-22 |
| Jon | D | 03-Apr-22 |
| Cristina | B | 03-Apr-22 |
| Gorka | C | 03-Apr-22 |
I need to create a new attached column where I count the number of times that the operator has manufactured X article as I show below
| Operator Name | Article | Date | Number of times you have manufactured the item | |
| Borja | A | 01-Apr-22 | 1 | |
| Jon | A | 01-Apr-22 | 1 | |
| Asier | A | 01-Apr-22 | 2 | |
| Ricardo | B | 01-Apr-22 | 1 | |
| Iñaki | C | 01-Apr-22 | 1 | |
| Cristina | D | 01-Apr-22 | 1 | |
| Gorka | C | 01-Apr-22 | 2 | |
| Asier | A | 02-Apr-22 | 2 | |
| Borja | D | 02-Apr-22 | 1 | |
| Cristina | B | 02-Apr-22 | 2 | |
| Ricardo | A | 02-Apr-22 | 1 | |
| Iñaki | B | 03-Apr-22 | 1 | |
| Jon | D | 03-Apr-22 | 1 | |
| Cristina | B | 03-Apr-22 | 2 | |
| Gorka | C | 03-Apr-22 | 1 |
I have tried in several ways with FUNCTIONS COUNT, SUMMARIZE, GROUPBY, FILTER...... but I can't visualize what I need.
Greetings and thanks in advance.
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new calculated column.
Expected result CC =
COUNTROWS (
FILTER (
Data,
Data[Operator Name] = EARLIER ( Data[Operator Name] )
&& Data[Article] = EARLIER ( Data[Article] )
)
)
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new calculated column.
Expected result CC =
COUNTROWS (
FILTER (
Data,
Data[Operator Name] = EARLIER ( Data[Operator Name] )
&& Data[Article] = EARLIER ( Data[Article] )
)
)
Thank you very much, it works perfectly!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 39 | |
| 28 | |
| 28 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 27 | |
| 25 |