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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Filter Table using Selected Montha na d Year

I need an urgent help.

 

I have a month and year filter, which linked to the Date table.

 

I have another table A which is not linked to the date able and it has a Start date and End date.

 

Now I want to filter table A where the selected Year and Month lies in between the Start Date and End Date.

 

Please help me.

Thanks

1 ACCEPTED SOLUTION
v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

Could you tell me if your problem has been solved? If it is, kindly mark the helpful answer as a solution if you feel that makes sense. Welcome to share your own solution. More people will benefit from here.

 

Best Regards,

Xue

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

Could you tell me if your problem has been solved? If it is, kindly mark the helpful answer as a solution if you feel that makes sense. Welcome to share your own solution. More people will benefit from here.

 

Best Regards,

Xue

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

 

I create a sample to calculate total values when the selected date is between start date and end date. You can reference it to modify yours.

 

  1. I created a new date table.
Table = CALENDARAUTO()

1.png2.png

  1. Create a measure
Measure =
VAR a =
    CALCULATE (
       SUM ( Table1[values] ),
        FILTER ( Table1, MAX ( 'Table'[Date].[Year] ) = Table1[START_DATE].[Year] )
    )
VAR b =
    CALCULATE (
        SUM ( Table1[values] ),
        FILTER (
            Table1,
            MAX ( 'Table'[Date] ) <= Table1[END_DATE]
                && MAX ( 'Table'[Date] ) >= Table1[START_DATE]
        )
    )
RETURN
    IF (
        ISFILTERED ( 'Table'[Date].[Year] ),
       IF ( ISFILTERED ( 'Table'[Date].[Month] ), b, a ),
        SUM ( Table1[values] )
    )

3.jpg4.jpg5.png6.png

Best Regards,

Xue Ding

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.