Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Good afternoon, I have a table where in a column frame with a 1 the working days and with 0 on Sundays. My question is the following, I want to show in a card the number of days that go of the month in process but without using the filter date, I want that it is not modified and it goes increasing while the days pass. Always taking the first of the month today. Is there any formula to use?
iam using this formulas but give me all days that have the month
Solved! Go to Solution.
Please check below measure.Attached sample file for your reference.
Measure =
CALCULATE (
COUNT ( fecha_act[Useful Days] ),
FILTER (
fecha_act,
fecha_act[Useful Days] = 1
&& YEAR ( fecha_act[Date] ) = YEAR ( TODAY () )
&& MONTH ( fecha_act[Date] ) = MONTH ( TODAY () )
&& fecha_act[Date] <= TODAY ()
)
)
Regards,
Please check below measure.Attached sample file for your reference.
Measure =
CALCULATE (
COUNT ( fecha_act[Useful Days] ),
FILTER (
fecha_act,
fecha_act[Useful Days] = 1
&& YEAR ( fecha_act[Date] ) = YEAR ( TODAY () )
&& MONTH ( fecha_act[Date] ) = MONTH ( TODAY () )
&& fecha_act[Date] <= TODAY ()
)
)
Regards,
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 19 | |
| 12 |
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 41 | |
| 34 | |
| 32 |