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

Create PDF on Custom Object
I do not have any coding experience but hoping someone can help me write the code to Print to PDF from a Custom Object. We have a Custom Object called "Executive Summary" and I would like to print to PDF when a button is clicked. I was able to create the button but I can not get it to do anything. Help Please? Below is a Screen Shot of my custom object.

Create a VF Page as below. The one I have below is from a basic page that shows some Contact info. Where you want fields populated on your PDF insert {!sObject.FieldName}. Below I have it pulling from a Contact record. If you need it on a different object replace "Contact" with your object. For the button have it pointed to the VF Page name.
Also, you need to insert HTML if you want the PDF to render with styling. I use https://wordtohtml.net/. I'll create what I want the PDF to look like in Word, then copy paste it to that site to grab the HTML. Then just paste the HTML inbetween the <html> tags on the VF Page.
Sample Apex Class: Sample VF Page: