cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

frequency of product

I've the pbix file https://1drv.ms/u/s!Amd7BXzYs7AVlXPjuP0CfblYyc5K?e=1b9DUX

 

I calculate the frequency of each subprodduct in the fact table

Fréquence = calculate(count(Propre[EPCs]) , REMOVEFILTERS ( 'DimDate' ),FILTER(Propre,Propre[Statut]<>"PROPRE" ))

 

The minimum frquency is 1, but I'd like to get those without any frequency

jaweher89_0-1653756881388.png

expected results

 

jaweher89_1-1653756941308.png

 

 

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , i think you are looking for bucketing

 

Bucket/Segment code
measure


Measure = [Frequency Measure]

 

new Table
bucket = Generateseries(1,100,1)

 

new Measure
Countx(filter(Values(Table[user]), [Measure ] = max(bucket[Value])), [User])

 

refer

Dynamic segmentation -Measure to Dimension conversion: https://youtu.be/gzY40NWJpWQ

 

Power bi New Feature Datamarts - https://youtu.be/8tskWsJTEpg

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors