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
NISHA_S
Resolver I
Resolver I

Selection for date value based on multiple date column criteria

I have a report showing table data based on  a date selecting from a calender date value.

The issue am facing is while selecting a calender  date column from slicer based on that table data need to apply one criteria which is 

if user is selecting date 09-08-2023,

 report will show based on below condition

created_date >=01-08-2023 and Created_date<31-08-202 and Expiry date <=09-08-2024

 

calender screen.png

DATA snipp.pngreport snip.png

 

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

Hi @NISHA_S ,

I created a sample pbix file(see the attachment), please check if that is what you want.

1. Create a measure as below

 

Flag = 
VAR _seldate =
    SELECTEDVALUE ( 'Calendar'[Date] )
VAR _selcdate =
    SELECTEDVALUE ( 'Table'[Created date] )
VAR _seledate =
    SELECTEDVALUE ( 'Table'[Expiry date] )
RETURN
    IF (
        _selcdate >= DATE ( YEAR ( _seldate ), MONTH ( _seldate ), 1 )
            && _selcdate < EOMONTH ( _seldate, 0 )
            && _seledate <= _seldate,
        1,
        0
    )

 

2. Create a table visual and apply the filter with the condition (Flag is 1)

vyiruanmsft_0-1691725559238.png

Best Regards

Community Support Team _ Rena
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

1 REPLY 1
v-yiruan-msft
Community Support
Community Support

Hi @NISHA_S ,

I created a sample pbix file(see the attachment), please check if that is what you want.

1. Create a measure as below

 

Flag = 
VAR _seldate =
    SELECTEDVALUE ( 'Calendar'[Date] )
VAR _selcdate =
    SELECTEDVALUE ( 'Table'[Created date] )
VAR _seledate =
    SELECTEDVALUE ( 'Table'[Expiry date] )
RETURN
    IF (
        _selcdate >= DATE ( YEAR ( _seldate ), MONTH ( _seldate ), 1 )
            && _selcdate < EOMONTH ( _seldate, 0 )
            && _seledate <= _seldate,
        1,
        0
    )

 

2. Create a table visual and apply the filter with the condition (Flag is 1)

vyiruanmsft_0-1691725559238.png

Best Regards

Community Support Team _ Rena
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.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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