Forum Discussion

masonsmerl17's avatar
masonsmerl17
New Member
3 years ago
Solved

Creating conditional color formatting for date column

Hi,  I want to create a conditional color formatting for the following column:   Essentially, I want every cell thats date is in the past to have a red background color and every cell that i...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi  masonsmerl17 ,

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

    1. Create a measure as below

    Conditional formatting = 
    VAR _selsdate =
        SELECTEDVALUE ( 'Table'[Latest Start Date] )
    RETURN
        SWITCH (
            TRUE (),
            _selsdate < TODAY (), "Red",
            DATE ( YEAR ( _selsdate ), MONTH ( _selsdate ), DAY ( _selsdate ) ) = TODAY (), "Green"
        )

    2. Configure conditional formatting

    If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

    How to upload PBI in Community

    Best Regards