Forum Discussion

jordielane's avatar
jordielane
New Contributor III
2 years ago

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...
  • JackLacava's avatar
    JackLacava
    2 years ago
    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