Forum Discussion
aarontanek
2 years agoRegular Visitor
Top N and Others
Hi Everyone, I have 2 questions on Power BI and hope that someone is able to advise. #1 The below table refers. Fruit Quantity Apple 30 Kiwi 50 Orange 40 Wa...
- 2 years ago
For your first requierement just create a calculated column
FruitName = IF(RANKX(ALLSELECTED('Fruit'),('Fruit'[Quantity]),,DESC,Dense)>3,"Others",Fruit[Fruit])and use it in the table visual instead of the your original column from the table source .
I am not sure if its possible to achieve your second requieremnt but I am hope I am wrong.The best that is possible based on my knowledge is create a measure
Title = "Quantity" & Year(TODAY()) & ""
and add it under the title property of your table visual
SachinNandanwar
Impactful Individual
2 years agoFor your first requierement just create a calculated column
FruitName = IF(RANKX(ALLSELECTED('Fruit'),('Fruit'[Quantity]),,DESC,Dense)>3,"Others",Fruit[Fruit])and use it in the table visual instead of the your original column from the table source .
I am not sure if its possible to achieve your second requieremnt but I am hope I am wrong.The best that is possible based on my knowledge is create a measure
Title = "Quantity" & Year(TODAY()) & ""
and add it under the title property of your table visual