jordielane
2 years agoNew Contributor III
Cube View Formatting
Does anyone know how to format the object lookup cell in the cubeview? We currently have formatting on the cube view as follows.
If(IsRowNumberEven = True) Then
BackgroundColor = #FFFFFFFF, *white*
ExcelBackgroundColor = #FFFFFFFF,
Else
BackgroundColor = #FFCFF0FC, *blue*
ExcelBackgroundColor = #FFCFF0FC,
End If
If (RowName contains 'NoZebra') or (IsColHeader = true) then
BackgroundColor = #FFFFFFFF, *white*
ExcelBackgroundColor = #FFFFFFFF,
end if
In some of our reports we use IsRowNumberEven = False, but in this case I need the odd rows to be blue, but since it counts the column headers I don't know how to get around this.
BackgroundColor = #FFFFFFFF if RowName <> '' then If(IsRowNumberEven = True) then BackgroundColor = #FFFFFFFF, ExcelBackgroundColor = #FFFFFFFF, Else BackgroundColor = #FFCFF0FC, ExcelBackgroundColor = #FFCFF0FC, End If If (RowName contains 'NoZebra') or (IsColHeader = true) then BackgroundColor = #FFFFFFFF, ExcelBackgroundColor = #FFFFFFFF, end if end if