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
bw70316
Helper V
Helper V

List Alerts for Upcoming Milestones in Chart

I am hoping to create a list of individuals who are about to reach specific milestones within our company. For example, a month before they have reached their 5 years at the company, I would like them to be added to a list and then removed from the list once their milestone has hit. 

PErsonDate Started MilestoneDays until
Bob9/20/20155 years10
Cathy9/20/201810 years500+ days (would not show up)
Billy9/20/201010 years10 days

 

 

If this needs to be broken up into different columns for each milestone so be it, so the chart might look like:

 

Person5 YearsTen Years
Bobyesno
Billyno yes

 

And Cathy would only appear when her 10 year milestone is up. Please let me know if this is doable

1 ACCEPTED SOLUTION

Hello @bw70316

Yes, this error is because it has a blank value for the [Start Date] column, so simply adjust the formula by the IF column as below screenshot shown:

Column = 
IF([Date Started ]=BLANK(),BLANK(),

VAR __Today = TODAY()
    VAR __Start = [Date Started ]
    VAR __Table = 
        {
            ("5 Years",(DATE(YEAR(__Start)+5,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("10 Years",(DATE(YEAR(__Start)+10,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("15 Years",(DATE(YEAR(__Start)+15,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("20 Years",(DATE(YEAR(__Start)+20,MONTH(__Start),DAY(__Start))-__Today)*1.)
        }
    VAR __DaysUntil = MINX(FILTER(__Table,[Value2]>0),[Value2])
RETURN
    __DaysUntil)
Column 2 = 
IF([Date Started ]=BLANK(),BLANK(),

VAR __Today = TODAY()
    VAR __Start = [Date Started ]
    VAR __Table = 
        {
            ("5 Years",(DATE(YEAR(__Start)+5,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("10 Years",(DATE(YEAR(__Start)+10,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("15 Years",(DATE(YEAR(__Start)+15,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("20 Years",(DATE(YEAR(__Start)+20,MONTH(__Start),DAY(__Start))-__Today)*1.)
        }
    VAR __DaysUntil = MINX(FILTER(__Table,[Value2]>0),[Value2])
    VAR __Anniversary = MAXX(FILTER(__Table,[Value2]=__DaysUntil),[Value1])
RETURN
 __Anniversary)

Best regards

Lin

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

View solution in original post

3 REPLIES 3
Greg_Deckler
Super User
Super User

@bw70316 - I did this in 2 columns like below. PBIX attached under sig. You want Table, Column and Column 2. @ me if this is not what you are looking for.

Column = 
    VAR __Today = TODAY()
    VAR __Start = [Date Started ]
    VAR __Table = 
        {
            ("5 Years",(DATE(YEAR(__Start)+5,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("10 Years",(DATE(YEAR(__Start)+10,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("15 Years",(DATE(YEAR(__Start)+15,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("20 Years",(DATE(YEAR(__Start)+20,MONTH(__Start),DAY(__Start))-__Today)*1.)
        }
    VAR __DaysUntil = MINX(FILTER(__Table,[Value2]>0),[Value2])
RETURN
    __DaysUntil


Column 2 = 
    VAR __Today = TODAY()
    VAR __Start = [Date Started ]
    VAR __Table = 
        {
            ("5 Years",(DATE(YEAR(__Start)+5,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("10 Years",(DATE(YEAR(__Start)+10,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("15 Years",(DATE(YEAR(__Start)+15,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("20 Years",(DATE(YEAR(__Start)+20,MONTH(__Start),DAY(__Start))-__Today)*1.)
        }
    VAR __DaysUntil = MINX(FILTER(__Table,[Value2]>0),[Value2])
    VAR __Anniversary = MAXX(FILTER(__Table,[Value2]=__DaysUntil),[Value1])
RETURN
    __Anniversary

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

I was getting a "An argument of function 'DATE' has the wrong data type or the result is too large or too small." That was the result of having blanks in my data. So I learned two things. I very much appreciate this post. Jedi Dax Master.

Hello @bw70316

Yes, this error is because it has a blank value for the [Start Date] column, so simply adjust the formula by the IF column as below screenshot shown:

Column = 
IF([Date Started ]=BLANK(),BLANK(),

VAR __Today = TODAY()
    VAR __Start = [Date Started ]
    VAR __Table = 
        {
            ("5 Years",(DATE(YEAR(__Start)+5,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("10 Years",(DATE(YEAR(__Start)+10,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("15 Years",(DATE(YEAR(__Start)+15,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("20 Years",(DATE(YEAR(__Start)+20,MONTH(__Start),DAY(__Start))-__Today)*1.)
        }
    VAR __DaysUntil = MINX(FILTER(__Table,[Value2]>0),[Value2])
RETURN
    __DaysUntil)
Column 2 = 
IF([Date Started ]=BLANK(),BLANK(),

VAR __Today = TODAY()
    VAR __Start = [Date Started ]
    VAR __Table = 
        {
            ("5 Years",(DATE(YEAR(__Start)+5,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("10 Years",(DATE(YEAR(__Start)+10,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("15 Years",(DATE(YEAR(__Start)+15,MONTH(__Start),DAY(__Start))-__Today)*1.),
            ("20 Years",(DATE(YEAR(__Start)+20,MONTH(__Start),DAY(__Start))-__Today)*1.)
        }
    VAR __DaysUntil = MINX(FILTER(__Table,[Value2]>0),[Value2])
    VAR __Anniversary = MAXX(FILTER(__Table,[Value2]=__DaysUntil),[Value1])
RETURN
 __Anniversary)

Best regards

Lin

Community Support Team _ Lin
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.