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
DigitalDNA
Frequent Visitor

Help modifying a display text box value based on filters for future milestones

I have a display text box value based on filters with a list of milestones that currently works using the code below however I would like to modify it slightly so that only future milestones are displayed (i.e. those milestones occuring after today). Additionally, I would like to add 2 additional columns "Name" and "Meeting" into the mix so that the final output appears as: "Upcoming Milestones: 10/22/2021 Meeting Name, 10/23/2021 Meeting Name", and so on.  Thank you.

 

Measure = "Upcoming Milestones: "
& CONCATENATEX (
VALUES(Milestones[Target (End)])
, Milestones[Target (End)]
,", "
)
2 ACCEPTED SOLUTIONS
AlexisOlson
Super User
Super User

Like this?

 

Upcoming Milestones =
"Upcoming Milestones: "
    & CONCATENATEX (
        FILTER ( Milestones, Milestones[Target (End)] > TODAY () ),
        FORMAT ( Milestones[Target (End)], "mm/dd/yyyy" )
			& " " & Milestones[Meeting]
			& " " & Milestones[Name],
        ", "
    )

View solution in original post

Next Milestone =
VAR NextDate =
    MINX (
        FILTER ( Milestones, Milestones[Target (End)] > TODAY () ),
        Milestones[Target (End)]
    )
RETURN
    "Upcoming Milestones: "
        & CONCATENATEX (
            FILTER ( Milestones, Milestones[Target (End)] = NextDate ),
            FORMAT ( Milestones[Target (End)], "mm/dd/yyyy" )
				& " " & Milestones[Meeting]
				& " " & Milestones[Name],
            ", "
        )

View solution in original post

4 REPLIES 4
DigitalDNA
Frequent Visitor

How can I return only 1 milestone date, meeting, and name using the same solution and code referenced above?  That is, out of many future milestones that will occur after today, I only want to show the very next milestone (1 as oppposed to many).  Thank you.

Next Milestone =
VAR NextDate =
    MINX (
        FILTER ( Milestones, Milestones[Target (End)] > TODAY () ),
        Milestones[Target (End)]
    )
RETURN
    "Upcoming Milestones: "
        & CONCATENATEX (
            FILTER ( Milestones, Milestones[Target (End)] = NextDate ),
            FORMAT ( Milestones[Target (End)], "mm/dd/yyyy" )
				& " " & Milestones[Meeting]
				& " " & Milestones[Name],
            ", "
        )
DigitalDNA
Frequent Visitor

Brilliant--works perfectly, thank you!

AlexisOlson
Super User
Super User

Like this?

 

Upcoming Milestones =
"Upcoming Milestones: "
    & CONCATENATEX (
        FILTER ( Milestones, Milestones[Target (End)] > TODAY () ),
        FORMAT ( Milestones[Target (End)], "mm/dd/yyyy" )
			& " " & Milestones[Meeting]
			& " " & Milestones[Name],
        ", "
    )

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.

Top Solution Authors