This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
d/m/y
1/1/2020-100
2/1/2020-200
3/1/2020-40
4/1/2020-500
1/2/2020-100
2/2/2020-200
3/2/2020-40
4/2/2020-500
1/3/2020-100
2/3/2020-200
3/3/2020-40
for eg if the march is curent month and last day is 3/3/2020 then its show the values of all previous month till the particular day which is 3rd , how do i filter this ???
output is
1/1/2020-100
2/1/2020-200
3/1/2020-40
1/2/2020-100
2/2/2020-200
3/2/2020-40
1/3/2020-100
2/3/2020-200
3/3/2020-40
thank you for your help in advance
Solved! Go to Solution.
If I understand correctly, you'll need to build some logic into your measure/column to filter using the DAY() function.
For example
Up To This Day Measure =
VAR thisday =
DAY (
TODAY ()
)
RETURN
CALCULATE (
[Your Measure],
FILTER (
ALLSELECTED ( 'Date'[Date] ),
DAY ( 'Date'[Date] ) <= thisday
)
)
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
If I understand correctly, you'll need to build some logic into your measure/column to filter using the DAY() function.
For example
Up To This Day Measure =
VAR thisday =
DAY (
TODAY ()
)
RETURN
CALCULATE (
[Your Measure],
FILTER (
ALLSELECTED ( 'Date'[Date] ),
DAY ( 'Date'[Date] ) <= thisday
)
)
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
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 |
|---|---|
| 29 | |
| 22 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 41 | |
| 24 | |
| 22 | |
| 22 |