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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
PowerBiuser0708
Regular Visitor

Power bi slicer

 contract validation. @amitchandak @Greg_Deckler 

1 ACCEPTED SOLUTION
MohammadLoran25
Super User
Super User

Hi @PowerBiuser0708 ,

Suppose you have contract id in your matrix.

1-Create a date table . No need to create relationship for it with your contract table

 

2-CREATE a Measure as below:

 

 

MeasureFlag =
VAR _SELECTEDDATE =
    SELECTEDVALUE ( 'DateTable'[Date] )
RETURN
    IF (
        SELECTEDVALUE ( 'ContractTable'[Valid From] ) <= _SELECTEDDATE
            && SELECTEDVALUE ( 'ContractTable'[Valid To] ) >= _SELECTEDDATE,
        1,
        BLANK ()
    )

 

 

 

Put it on your matrix as a filter in FilterPane and set it as "IS 1".

 

It helped?

Mark it as an accepted solution.

Regards,

Loran

View solution in original post

3 REPLIES 3
MohammadLoran25
Super User
Super User

Hi @PowerBiuser0708 ,

Suppose you have contract id in your matrix.

1-Create a date table . No need to create relationship for it with your contract table

 

2-CREATE a Measure as below:

 

 

MeasureFlag =
VAR _SELECTEDDATE =
    SELECTEDVALUE ( 'DateTable'[Date] )
RETURN
    IF (
        SELECTEDVALUE ( 'ContractTable'[Valid From] ) <= _SELECTEDDATE
            && SELECTEDVALUE ( 'ContractTable'[Valid To] ) >= _SELECTEDDATE,
        1,
        BLANK ()
    )

 

 

 

Put it on your matrix as a filter in FilterPane and set it as "IS 1".

 

It helped?

Mark it as an accepted solution.

Regards,

Loran

,

Hi @PowerBiuser0708 ,

 

What does your matrix visual and your source data look like, which fields have you applied to it?

Sorry for that the information you have provided is not making the problem clear to me. Can you please share more details to help us clarify your scenario?

Please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

 

Refer to:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

 

Best Regards,

Jianbo Li

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.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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