Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Solved! Go to Solution.
Like this?
Upcoming Milestones =
"Upcoming Milestones: "
& CONCATENATEX (
FILTER ( Milestones, Milestones[Target (End)] > TODAY () ),
FORMAT ( Milestones[Target (End)], "mm/dd/yyyy" )
& " " & Milestones[Meeting]
& " " & Milestones[Name],
", "
)
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],
", "
)
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],
", "
)
Brilliant--works perfectly, thank you!
Like this?
Upcoming Milestones =
"Upcoming Milestones: "
& CONCATENATEX (
FILTER ( Milestones, Milestones[Target (End)] > TODAY () ),
FORMAT ( Milestones[Target (End)], "mm/dd/yyyy" )
& " " & Milestones[Meeting]
& " " & Milestones[Name],
", "
)
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
11 | |
9 | |
6 |