Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
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]
)
User | Count |
---|---|
19 | |
18 | |
16 | |
13 | |
13 |
User | Count |
---|---|
9 | |
8 | |
8 | |
7 | |
6 |