Forum Discussion
rcurtis
2 years agoNew Contributor
Move Company Logo to Right on Reports
Is there a way to move the company logo to the right header side of reports? I have applied a business rule to move the report title on the left but now it is hidden behind the company logo.
TYI...
julieta
2 years agoContributor
Yes you can. In your cube view, go to General Settings --> Report --> Change Custom Report Task to "Execute Cube View Extender InLine Formula", click on the formula bar and paste this:
Move Logo in Header
Case Is = CVExtenderFunctionType.FormatReportUIItem Dim uiItem As CVExtenderReportUIItem = args.Report.CurrentUIItem
If uiItem.UIItemType = XFReportUIItemType.PageHeaderPictureBoxLogo Then uiItem.Left = args.Report.CurrentPageInfo.RightPosition - uiItem.Width
End If
NOTE: CurrentPageInfo can also use CenterPosition in order to move the logo to the center of the report.
🙂
Related Content
- 2 years ago
- 2 years ago
- 8 months ago