Hi team
How do I create a border across rows and columns, essentially creating a box around them? The use case is for showing the detailed amounts for a subtotal in the AFS, contained within the bo...
I'm don't believe it is possible in cube views, but I'm sure it can be done in Excel or PDF reports using conditional formatting. The logic would depend on how you have configured your cube view, so we'd need a bit more information on how you are building the report to give advice.
A starter for 10 (note, it only applies the excel formatting for now):
You could try adding something like this to the default cell format of the cube view:
If (ColName Contains 'LEFT') Then
ExcelLeftBorderColor = Black,
ExcelLeftBorderLineStyle = Thin,
Else If (ColName Contains 'RIGHT') Then
ExcelRightBorderColor = Black,
ExcelRightBorderLineStyle = Thin,
End If
If (RowName Contains 'TOP') Then
ExcelTopBorderColor = Black,
ExcelTopBorderLineStyle = Thin,
ExcelLeftBorderLineStyle = None,
ExcelRightBorderLineStyle = None,
End If
If (RowName Contains 'BOTTOM') Then
ExcelBottomBorderColor = Black,
ExcelBottomBorderLineStyle = Thin,
ExcelLeftBorderLineStyle = None,
ExcelRightBorderLineStyle = None,
End If
It would require that you add 'LEFT' / 'TOP' etc to the relevant rows and columns, e.g. :