You need to sign in to do that
Don't have an account?

how to display a report in Visual force page
Hi guys,
Is it possinle to display a report in visula force page? if yes, can anybody tell me the steps to do it.
Help will be appreciated.
Thanks in Advance.........................
Hi,
You can display the report in the Visual force page. You can pass the report id in the apex: iframe src.
Use the below code snippets as reference
<apex:page >
<apex:iframe src="/00O900000020jcA"/> <!—Red mark is Report id -->
</apex:page>
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
All Answers
Hi,
You can display the report in the Visual force page. You can pass the report id in the apex: iframe src.
Use the below code snippets as reference
<apex:page >
<apex:iframe src="/00O900000020jcA"/> <!—Red mark is Report id -->
</apex:page>
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
Thanks Jain,
Yes i am able to get that report but salesforce header is coming can we remove it.
In the <apex:page> tag, do this:
<apex:page showHeader="false" sidebar="false">
-Andy
I have also the same problem I added a report on VF and added it on home page
but it automatically recirects to the report page and doesn't show me the home page
Any ideas?