Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago

identify consecutive underperformance for a product

Hello everybody,

 

I want to show when a certain product underperforms for at least two consecutive months. See following table.
My product is identified through a equipment number, for every month and every product i get information about the units sold. This information is only mothly not daily.

My goal is that i get an alert or something that shows me, when i have a product, that is sold less than a 1000 times for 2 or more consecutive months.

 

Thank You in advance for your help!

Luca

 

 

 

2 Replies

  • Anonymous , I think modification to this logic should help 

     

    Customer Purchasing in each of the last 3 months: https://youtu.be/bGtjoccEA38

     

    Countx( values(product[Product]), calculate( if(
    countx(values(Date[Month Year]), if([Measure] >1000),[Month Year], blank()) >=2, [Product], blank())))

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      amitchandak thank you very much for your help, but unfortunately its not solving my problem. 

      I did the video and changedit with your idea, it shows me identification but as you can see in the table it gives me a 1 (signal) as soon as a product hits 1000 units. I only want to see if it not hit 1000 for 2 consecutive months. When I turn > into < then i see the exact opposite but the 2 consecutive motnhs are not considered.