Forum Discussion
harry6810
4 years agoFrequent Visitor
Filtering - DAX command
Hi, what is wrong with this command?
Acer min = CALCULATE('Raportcen'[min.price],FILTER('Raportcen',Raportcen[producent]="Acer"))
I need to find the lowest price for Acer brand. The table as below.
harry6810 you need an aggregator here
CALCULATE(MIN/MAX/SUM/AVERAGE('Raportcen'[min.price]),FILTER('Raportcen',Raportcen[producent]="Acer"))