FIRST CREATED ON 17 Feb 2025 I AUTHOR Emma Camacho
When using Cell Settings in the Designer to format a Table in a Report you can use the Function GetCellValue to get the value of the cell to set a customized format.
For example, to highlight the columns that have the header 2017:
if ( [Table].GetCellValue(1,[ColumnNumber])=2017, Rgb(192, 192, 192),Rgb(255, 255, 255) )
Output:
or to highlight the Row that containes "EDP" in the first column:
if ( InStr( [Table].GetCellValue([RowNumber],1), "EDP") = "1", Rgb(255, 128, 64),Rgb(0, 0, 0))
Output:
Looking for Additional Guidance?
If you require more detailed information or further assistance, please visit our comprehensive Online Documentation. Our resources are designed to help you navigate all features and functionalities effectively.