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
Soundar Rajan PonpandiSoundar Rajan Ponpandi 

How to Bulk Upload a image in a Rich Text field

Hello,

How to bulk upload a images in rich text field.

I have one custom object called Object_A__c and i have created a new rich text field it's called Rich__c. I have 1000 images i want to upload those images ito salesforce  (Images should be map in a  Rich__c field )

I created a CSV file / Make 2 colums / 1 for Name another one for Image.


Regards,
Soundar.
Best Answer chosen by Soundar Rajan Ponpandi
SwethaSwetha (Salesforce Developers) 

HI Soundar,

The Data Loader can be used to import images associated with rich text fields.

Please see steps at https://help.salesforce.com/articleView?id=000320965&type=1&mode=1

Note: The maximum size of an image that can be uploaded in a rich text area field is 1 MB. 
Reference: https://help.salesforce.com/articleView?id=fields_using_rich_text_area.htm&type=5

Hope this helps you. Please mark this answer as best so that others facing the same issue will find this information useful. Thank you

All Answers

SwethaSwetha (Salesforce Developers) 

HI Soundar,

The Data Loader can be used to import images associated with rich text fields.

Please see steps at https://help.salesforce.com/articleView?id=000320965&type=1&mode=1

Note: The maximum size of an image that can be uploaded in a rich text area field is 1 MB. 
Reference: https://help.salesforce.com/articleView?id=fields_using_rich_text_area.htm&type=5

Hope this helps you. Please mark this answer as best so that others facing the same issue will find this information useful. Thank you

This was selected as the best answer
SRAVYA REDDY 46SRAVYA REDDY 46
Hi Sundar!

Were you able to acheive this? I am looking for the same functionality. I have created a rich text field and I am looking to mass upload images. Please let me know how you have acheived this.
Bryan MacoyBryan Macoy
Hi Sravya,
I was able to upload images into a rich text field using the instructions in https://help.salesforce.com/articleView?id=000320965&type=1&mode=1. I am currently looking for alternatives because it has some limitations. If you are uploading one image per field, then you should follow the instructions. In order for me to add multiple images to one RTF, I had to copy and paste multiple img links (which is time consuming if done manually - so you would have to create code to connect the images to their desired RTF records. Also, it seems like exporting the images for whatever reason will also take some work if you intend to download hundreds of images. For this reason, I am looking for free alternatives to solve these concerns - but I think a 3rd party application might be the answer. Best of luck and I hope the Link the Swetha provided helps.