This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi all,
I am looking to create a measure that will count the amount of values returned between two dates (1st Jan 2022 - 1st May 2022). However, I can't figure out the correct way. For something like a card it's easy as I can just add a relative time filter to the visual and it's done. But for say if I want a pie chart with the values between the dates mentioned above vs the values between another set of dates (2nd May 2022 - 2nd Aug 2022) I struggle to create the correct measure.
I've been toying around with this one:
Solved! Go to Solution.
You can specify a static date using the DATE function, e.g. DATE(2022,5,24).
Your syntax for combining filters is wrong, you don't need to specify the table again, so you could use
FILTER (
jiraissue,
jiraissue[CREATED] >= DATE ( 2022, 1, 1 )
&& jiraissue[CREATED] <= DATE ( 2022, 5, 1 )
)
I think you need and nor or for that condition so I changed it to && not ||
You can specify a static date using the DATE function, e.g. DATE(2022,5,24).
Your syntax for combining filters is wrong, you don't need to specify the table again, so you could use
FILTER (
jiraissue,
jiraissue[CREATED] >= DATE ( 2022, 1, 1 )
&& jiraissue[CREATED] <= DATE ( 2022, 5, 1 )
)
I think you need and nor or for that condition so I changed it to && not ||
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 49 | |
| 47 | |
| 41 | |
| 21 | |
| 19 |