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
emmadiemmadi 

Can I customize the reports using Apex code?

I need to customize a report, report now displaying list of all users visited a blog.If user visited the blog page more than one time report displaying the number time they vises the blog.(ex: Tom (10)) but I need to modify the report such way that it it display only unique visitors(ex: Tom(1))Can I modify the report using apex code logic.

Damien_Damien_

If you have a number for unique blog visits, you can just use that instead of trying to manipulate data through a report.  Alternatively, you can create your own Visualforce report to display data the way you want.

emmadiemmadi

Do you mean create Visualforce from Scarch sam elook and feel of the report but how to put that in report tab?

Damien_Damien_

You cannot put that in the report tab.

 

Instead, just have another field that gives you the unique number.

emmadiemmadi

Yes I can't put them in reports tab but I need to create VF pages from scarch and I can't run th ereports.