Forum Discussion
gonnelli
8 years agoFrequent Visitor
How to count frequency mode price
Hello!
I'm trying to count the mode of values of some products.
I have a measure that defines the price mode, but I need to count how many times this price appears in my data table.
mode:
PRECO_MODA = MINX(TOPN(1;ADDCOLUMNS(VALUES(dash_lg_pricing_mc[preco]);"MODA";CALCULATE(COUNT(dash_lg_pricing_mc[preco])));[MODA];0);dash_lg_pricing_mc[preco])
Thanks for the help!
HI gonnelli
Try this MEASURE to count Mode
Mode Frequency = VAR mymode = [PRECO_MODA] RETURN COUNTROWS ( FILTER ( dash_lg_pricing_mc, dash_lg_pricing_mc[Preco] = mymode ) )
2 Replies
- Zubair_Muhammad
Community Champion
HI gonnelli
Try this MEASURE to count Mode
Mode Frequency = VAR mymode = [PRECO_MODA] RETURN COUNTROWS ( FILTER ( dash_lg_pricing_mc, dash_lg_pricing_mc[Preco] = mymode ) )- gonnelliFrequent Visitor
Thanks Zubair_Muhammad!!!
It works for me!