Forum Discussion
JuradoKevin14
2 years agoFrequent Visitor
Selected Value dax Query
I have this data but not sure on how to do the dax on this. Thank you on whoever can help me.
- 2 years ago
A measure doesn't create rows so you won't be able to have those tabular lists. If the calculated table on your end, doesnt give you the correct order, you can just create two extra columns to kind of select the should be column values.
Sort2 = IFERROR ( VALUE ( NewTable[Sort] ), VALUE ( NewTable[Carrier] ) ) Carrier2 = IF ( NewTable[Sort] = NewTable[Type], NewTable[Type], NewTable[Carrier] )
JuradoKevin14
2 years agoFrequent Visitor
Hi sir thank you got it. but i am fixing the sort so that it would be in ascending order. but I cant seem to put it in the filter page?
johnbasha33
2 years agoSuper User
JuradoKevin14
select the Type column and go to columntools and click on sort option, here you need to select Sort column. we basically specifying to use Sort column to sort Type column with this approach.
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!