Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi Folks,
I have a sample data like belwo chart
Iteration Start Date | End date | Sprint number |
12/27/2022 | 12/30/2022 | 41 |
12/28/2022 | 12/31/2022 | 41 |
12/29/2022 | 1/1/2023 | 41 |
12/30/2022 | 1/2/2023 | 41 |
12/31/2022 | 1/3/2023 0 | 42 |
1/1/2023 | 1/3/2023 | 42 |
1/2/2023 | 1/3/2023 | 42 |
1/3/2023 | 1/3/2023 | 42 |
Suppose today date is 27th dec, so i have get the sprint number is 41 and suppose date is jan1st 2023 then we need to get sprint number is 42.
Please help me with DAX
Solved! Go to Solution.
Hi @Samba777
Please try
Today Sprint =
MAXX (
FILTER (
ALL ( Data ),
Data[Iteration Start Date] <= TODAY ()
&& Data[IEnd Date] >= TODAY ()
),
Data[Sprint]
)
Hi @Samba777
Please try
Today Sprint =
MAXX (
FILTER (
ALL ( Data ),
Data[Iteration Start Date] <= TODAY ()
&& Data[IEnd Date] >= TODAY ()
),
Data[Sprint]
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
11 | |
11 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |