Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
av9
Helper III
Helper III

How to display clients which have had 3 consecutive negative months in values

I am trying to flag which clients have had the last 3 consecutive months as negative values. My data looks like the table below:

Fields: Client, Date,  Value

 

ClientFeb-20Mar-20Apr-20
Client A-$100.00-$200.00-$ 500.00
Client B $500.00 $120.00-$ 800.00
Client C $1,150.00 $500.00 $ 900.00

 

The output would be showing me Client A as this meets the criteria.

ClientFeb-20Mar-20Apr-20
Client A-$100.00-$200.00-$ 500.00
5 REPLIES 5
v-yiruan-msft
Community Support
Community Support

Hi @av9 ,

You can create a measure as below:

Client with 3 consecutive negative months = 
CALCULATE (
    MAX ( 'Client'[Client] ),
    FILTER (
        'Client',
        'Client'[20-Feb] < 0
            && 'Client'[20-Mar] < 0
            && 'Client'[20-Apr] < 0
    )
)

negative values for last 3 months.JPG

Best Regards

Rena

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

I have dates setup in a calender table, so it doesn't work in this way

amitchandak
Super User
Super User

@av9 , try

consecutive negative =
Var _tab =summarize(filter(Table,DATESINPERIOD('Date'[Date],ENDOFMONTH(Sales[Sales Date]),-3,MONTH)),Table[Client],Table[Month],"_1", sum(Table[Value])
return
countX(filter(summarize(_tab,[Client],"_1",if(sum(Table[Value])>0,1,0) ),[_1] >=3),[Client])

I can't quite get the measure to work, I should explain the data model is set up in 3 separate tables:

 

Client Table(dim), Date Table(dim),  Value Table(fact)

Hi @av9 ,

In order to provide you a suitable measure or calculated column, could you please provide some sample data(exclude sensitive data) in these three tables and existed relationships among them? It is better if you can provide your report file directly. Thank you.

Best Regards

Rena

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.