Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
Need help in adding 2 filters in RANKX and sorting by Date.
Column = RANKX (
FILTER (Table1, Table1[Topic] = EARLIER ( Table1[Topic] ) ), FILTER (Table1, Table1[ID] = EARLIER ( Table1[ID] ) )
Table1[Date].[Date],
ASC,DENSE
)
However , I get an error - he expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.
Any way to fix this?
Thanks
Shirin
Solved! Go to Solution.
Hi @Anonymous
To combine multiple filter conditions we can use && or || operators
Column =
RANKX (
FILTER (
Table1,
Table1[Topic] = EARLIER ( Table1[Topic] )
&& [ID] = EARLIER ( Table1[ID] )
),
Table1[Date].[Date],
,
ASC,
DENSE
)
Hi @Anonymous
To combine multiple filter conditions we can use && or || operators
Column =
RANKX (
FILTER (
Table1,
Table1[Topic] = EARLIER ( Table1[Topic] )
&& [ID] = EARLIER ( Table1[ID] )
),
Table1[Date].[Date],
,
ASC,
DENSE
)
Hi @Zubair_Muhammad
Excuse me, any idea of transform this formula in a measure?
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 90 | |
| 78 | |
| 66 | |
| 65 |