Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi!
Let's see if somebody knows how to do this.
I have two tables:
My objective is to get a chart with an X-axis showing the number of interactions type A achieved (up to 😎 and a Y-axis showing the number of UserID that achieved such number of interactions type A. Also, it needs to be filtered by the variable Date (time).
So, I need something that counts the number of interactions per user and afterwards something that counts the number of users with a given number of interacions.
How would you do it? I have tried different approaches but I am not able to do it. For instance, I have tried to count the number of interacions type A done using a new column on the second table, but it doesn't take into account the Date when using a filter.
Thanks in advance!
Solved! Go to Solution.
So this is going to basically look like:
Interactions Measure =
COUNTROWS(FILTER('InteractionsTable',[Interaction]="A"))
Users Above Threshold Measure =
COUNTROWS(
FILTER(
SUMMARIZE('UserTable',[UserID],"__Interactions",[Interactions Measure]),
[__Interactions] >= 5
)
)For users with 5 or more interactions.
So this is going to basically look like:
Interactions Measure =
COUNTROWS(FILTER('InteractionsTable',[Interaction]="A"))
Users Above Threshold Measure =
COUNTROWS(
FILTER(
SUMMARIZE('UserTable',[UserID],"__Interactions",[Interactions Measure]),
[__Interactions] >= 5
)
)For users with 5 or more interactions.
Thank you!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 23 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 25 | |
| 24 | |
| 20 | |
| 20 | |
| 19 |