Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
7 | |
6 | |
5 |
User | Count |
---|---|
20 | |
11 | |
10 | |
9 | |
6 |