Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
qwaiti27231
Helper III
Helper III

Each day level in all the months in a display

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

 

 

1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

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





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

1 REPLY 1
mahoneypat
Microsoft Employee
Microsoft Employee

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





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.