Images on PDF generated

Hi everyone, I hope someone would be able to share suggestions regarding this situation I am in. I am creating an app that generates document based on the form, on the generated pdf file, I need to put in the logo of the company that was selected on the form that was filled out early on.

What I am thinking right now is like an if else statement that will use the image of the company selected. Is this possible?

Hi Rhage,

You can try those if statements like these in your template :

<<If: [companyname] = “company1”>>

<>

Example :

OH just like incorporate the image inside the if statements. I’ll try this. Thank you

1 Like

if it’s not convenient, you can also incorporate the image in your table.

Exemple :

Add an image column [CompanyLogo].

Then host your images in a website like imgur.com

Then in the formula, you can use something like this :

IFS([companyname] = “company1”, “https://i.imgur.com/q2oqx1U.png”,

[companyname] = “company2”, “https://i.imgur.com/PWOHdF5.png”, [etc for every company logo] )

And you can then use the column <<[CompanyLogo]>> in your template.

Your welcome !

1 Like