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:...
- 8 years ago
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 ) )
Zubair_Muhammad
8 years agoCommunity 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 ) )
- gonnelli8 years agoFrequent Visitor
Thanks Zubair_Muhammad!!!
It works for me!