Skip to main content
Newcomer
September 7, 2022

How to remove logo from Cube View Report

  • September 7, 2022
  • 3 replies
  • 0 views

Running a report and the company's logo is appearing on the left top corner and I would like to hide that, just not sure how.

3 replies

Veteran
September 7, 2022

Try this code in a cube view extender rule

Dim uiItem As CVExtenderReportUIItem = args.Report.CurrentUIItem
If uiItem.UIItemType = XFReportUIItemType.PageHeaderPictureBoxLogo Then
   uiItem.Visible = False
End If

(not tested my self)

DCarrilloAuthor
Newcomer
September 7, 2022

DGC_0-1662564261411.png

Would I insert the extender rule under 'Execute Cube View Business Rule'?

September 7, 2022

An alternate solution could be to create a new Dashboard with a Report Component.  Inside the Report Component is the Report Designer tab.  The Report Designer is a reporting design interface where you can customize the look and feel of a specific Dashboard.  Here you could delete the logo as a Picture Box Image and save as a new Dashboard without the logo.  

Newcomer
March 16, 2023

If you upload a logo file that is not .PNG nothing will show on your reports. No company logo and no OneStream Logo.  Figured that out by accident, but if your looking for a simple solution...