Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi all, I need to create a table inside the measure (not as another table) and get values from there.
If I run as below, it works fine
I see the table is Ok
How to write an expression that works for specific columns?
For example:
MAX(_index[Value2) ... that will return 3.1 ... or
FILTER(_index,[Value1] = 2 ... to select that specifc row
Solved! Go to Solution.
@gdecome , You can try like
MAXX(_index,_index[Value2]))
MAXX(filter(_index,_index[Value2] =2),_index[Value3])
You have use functions which take table name as one of the argument
@gdecome , You can try like
MAXX(_index,_index[Value2]))
MAXX(filter(_index,_index[Value2] =2),_index[Value3])
You have use functions which take table name as one of the argument
Hi @amitchandak , I could solve the problem removing the table name before the column name.
MAXX ( _index , [Value2] )
Thank you for your help
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 8 | |
| 7 | |
| 6 |