Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi trying to make a date filter so that it will show "Iteration 1" if the date range is from 03/23/2023 to 06/23/2023. And will show "Iteration 2" for anything after 06/23/2023. My formula is not working.
Solved! Go to Solution.
Hi @nhodges ,
Please create a measure with below dax formula:
Measure =
VAR min_date =
MIN ( 'Table'[Date] )
VAR max_date =
MAX ( 'Table'[Date] )
VAR result =
IF (
min_date >= DATE ( 2023, 03, 23 )
&& max_date <= DATE ( 2023, 06, 23 ),
"Iteration 1",
"Iteration 2"
)
RETURN
result
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @nhodges ,
Please create a measure with below dax formula:
Measure =
VAR min_date =
MIN ( 'Table'[Date] )
VAR max_date =
MAX ( 'Table'[Date] )
VAR result =
IF (
min_date >= DATE ( 2023, 03, 23 )
&& max_date <= DATE ( 2023, 06, 23 ),
"Iteration 1",
"Iteration 2"
)
RETURN
result
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 14 | |
| 8 | |
| 8 | |
| 8 |