cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Syk
Super User
Super User

Flag account if something has happened for 3 consecutive months

Hi everyone! I'm trying to identify when an account is uninsured for >= 3 months in a row.  My data (example in screenshot) will count each day that an account is uninsured. If the count is >1 it should show as uninsured for the whole month.

Syk_0-1644960772627.png

I need a way to flag the accounts that have been uninsured for >=3 months reguardless of when it happened. In the screenshot below, I'd need to flag accounts 456 and 789 but NOT 123. I hope this makes sense, please let me know if you have additional questions.

Syk_1-1644960916242.png

 

1 ACCEPTED SOLUTION

Hi @Syk 

 

Try this measure to find the Accounts with 3 month uninsured 1 in line:

 

Flag = 
Var _A =ADDCOLUMNS('Table',"3M",CALCULATE(sum('Table'[uninsured]),filter(ALLEXCEPT('Table','Table'[account]),'Table'[date] in DATESINPERIOD('Table'[date],EARLIER('Table'[date]),-3,MONTH))))
Var _B = filter(_A,[3M]=3)
return
COUNTROWS(_B)

 

then you can use that in the conditional formatting of your visual.

 

output:

VahidDM_0-1644964096932.png

 

 

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

View solution in original post

1 REPLY 1

Hi @Syk 

 

Try this measure to find the Accounts with 3 month uninsured 1 in line:

 

Flag = 
Var _A =ADDCOLUMNS('Table',"3M",CALCULATE(sum('Table'[uninsured]),filter(ALLEXCEPT('Table','Table'[account]),'Table'[date] in DATESINPERIOD('Table'[date],EARLIER('Table'[date]),-3,MONTH))))
Var _B = filter(_A,[3M]=3)
return
COUNTROWS(_B)

 

then you can use that in the conditional formatting of your visual.

 

output:

VahidDM_0-1644964096932.png

 

 

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors