Forum Discussion
gdecome
5 years agoHelper III
Getting values and filtering a virtual table
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 e...
- 5 years ago
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
amitchandak
5 years agoSuper User
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
5 years agoHelper III
- gdecome5 years agoHelper III
Hi amitchandak , I could solve the problem removing the table name before the column name.
MAXX ( _index , [Value2] )
Thank you for your help