function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
David RightscorpDavid Rightscorp 

How do I pull a report summary to a Visualforce page as simple plain text results?

How do I pull a report summary to a Visualforce page as simple plain text results?

I've been searching all over and haven't found a simple solution. All examples are confusing and all code has to be customized beyond my abilities.

Anyone have a simple copy and paste solution? 
SonamSonam (Salesforce Developers) 
Hi David, plain text result would need you to code, however, if you wish to depict this same data through a chart - you can use the analytics:reportchart tag and get the chart on the VF:

Page code:
<apex:page > <analytics:reportChart reportId="<report ID>"></analytics:reportChart> </apex:page>

result:
User-added image