This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi ,
Solved: Count Top 1 Rank per day - Microsoft Fabric Community
I'm intrested in doing something similar to this but for Months however my datasets are split into tables and do not have the "Sum of Points" as well as Team in one.
I have multiple tables one being with Devices , one with device usages and one with the date.
The device tables are connected with Dim device ID and The Date with Dim date id , i'm wondering if it's still possible to potentially create another table with the Month , Device and usages all in one table so i can create a rank conditonal column and then count how many times that store was rank one.
Thanks , James.
Solved! Go to Solution.
Hi @JamesBurke
If you want to create another table with data from these 3 tables, CROSSJOIN could be a good choice.
Here I create a set of sample for your reference:
Then add a table:
Table =
FILTER(
CROSSJOIN(
SELECTCOLUMNS(
'Device',
'Device'[Values2],
"DeviceID", 'Device'[ Dim device ID],
"DateID", 'Device'[Dim date id]
),
'DeviceUsage',
'Date'
),
[DeviceID] = 'DeviceUsage'[ Dim device ID] && [DateID] = 'Date'[Dim date id]
)
The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @JamesBurke
If you want to create another table with data from these 3 tables, CROSSJOIN could be a good choice.
Here I create a set of sample for your reference:
Then add a table:
Table =
FILTER(
CROSSJOIN(
SELECTCOLUMNS(
'Device',
'Device'[Values2],
"DeviceID", 'Device'[ Dim device ID],
"DateID", 'Device'[Dim date id]
),
'DeviceUsage',
'Date'
),
[DeviceID] = 'DeviceUsage'[ Dim device ID] && [DateID] = 'Date'[Dim date id]
)
The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the May 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 |
|---|---|
| 28 | |
| 24 | |
| 23 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 52 | |
| 49 | |
| 39 | |
| 20 | |
| 20 |