SSRS Conditional Formating like in Excel

Byron Buys 21 Reputation points
2020-12-10T08:16:23.743+00:00

Hi Guys

Please can you help me solve this, I need to create the attached report in SSRS but I cant get the Conditional formating to work like the one in excel.

46828-conditional-formating.png

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
12,757 questions
SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,807 questions
0 comments No comments
{count} votes

Accepted answer
  1. ZoeHui-MSFT 33,126 Reputation points
    2020-12-10T09:20:36.837+00:00

    Hi @Byron Buys ,

    You may refer this link for help.

    It shows detail steps to meet your requirement.

    Create two new columns for “Min(Value)” and “Max(Value)”.

    Set “Name” property for minimum value and maximum value.

    Open the “BackgroundColor” property’s expression dialog box for editing its expression.

    =swicth(Fields!value.Value=reportitems!minvalue.value,"green",Fields!value.Value=reportitems!maxvalue.value,"red",Fields!value.Value>reportitems!minvalue.value or Fields!value.Value<reportitems!maxvalue.value,"white")  
    

    Hide the two Max and Min value column.

    http://www.bigator.com/2012/04/26/spothighlight-minimum-and-maximum-values-in-each-row-in-matrix-report-in-ssrs/

    Regards,

    Zoe


    If the answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
    Hot issues October

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Olaf Helper 40,901 Reputation points
    2020-12-10T08:41:19.473+00:00