The data set is as follows
i have written a measure which will make the sum of mark column
DAX_mark_sum=sum(mark)
I got the following result as expected when used the table visual
Now I need the top 2 records order by mark sum desc
To achieve the result i have tried like 1. mark the measure as "don't summarize" 2. visual filters----top N selected---> Placed 2 records.
but i got duplicates....Please help me with this one
thanks in advance
The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.
– Smart003