Merge Name Release Gratuit
Drop document here to upload
Up to 100 MB for PDF and up to 25 MB for DOC, DOCX, RTF, PPT, PPTX, JPEG, PNG, JFIF, XLS, XLSX or TXT
Note: Integration described on this webpage may temporarily not be available.
0
Forms filled
0
Forms signed
0
Forms sent
Discover the simplicity of processing PDFs online

Upload your document in seconds

Fill out, edit, or eSign your PDF hassle-free

Download, export, or share your edited file instantly
Top-rated PDF software recognized for its ease of use, powerful features, and impeccable support
Every PDF tool you need to get documents done paper-free

Create & edit PDFs
Generate new PDFs from scratch or transform existing documents into reusable templates. Type anywhere on a PDF, rewrite original PDF content, insert images or graphics, redact sensitive details, and highlight important information using an intuitive online editor.

Fill out & sign PDF forms
Say goodbye to error-prone manual hassles. Complete any PDF document electronically – even while on the go. Pre-fill multiple PDFs simultaneously or extract responses from completed forms with ease.

Organize & convert PDFs
Add, remove, or rearrange pages inside your PDFs in seconds. Create new documents by merging or splitting PDFs. Instantly convert edited files to various formats when you download or export them.

Collect data and approvals
Transform static documents into interactive fillable forms by dragging and dropping various types of fillable fields on your PDFs. Publish these forms on websites or share them via a direct link to capture data, collect signatures, and request payments.

Export documents with ease
Share, email, print, fax, or download edited documents in just a few clicks. Quickly export and import documents from popular cloud storage services like Google Drive, Box, and Dropbox.

Store documents safely
Store an unlimited number of documents and templates securely in the cloud and access them from any location or device. Add an extra level of protection to documents by locking them with a password, placing them in encrypted folders, or requesting user authentication.
Customer trust by the numbers
64M+
users worldwide
4.6/5
average user rating
4M
PDFs edited per month
9 min
average to create and edit a PDF
Join 64+ million people using paperless workflows to drive productivity and cut costs
Why choose our PDF solution?
Cloud-native PDF editor
Access powerful PDF tools, as well as your documents and templates, from anywhere. No installation needed.
Top-rated for ease of use
Create, edit, and fill out PDF documents faster with an intuitive UI that only takes minutes to master.
Industry-leading customer service
Enjoy peace of mind with an award-winning customer support team always within reach.
What our customers say about pdfFiller
See for yourself by reading reviews on the most popular resources:
I had a little trouble finding the right form for the Post Office EDDM program. First, I got an outdated form which was corrected at the post office. When I complained to customer support, they were very helpful and I was able to access the up-to-date form.
2014-06-25
The experience was interesting. I would recommend the company to others but I would make sure that the price is up front before purchase is made. I misunderstood the price of the product. But Again I would recommend the company just for the fact that they are very helpful.
2018-01-10
I was very pleased with the user friendly nature of PDFfiller. I had a situation where a documented needed to be sent ASAP, and everything went precisely as planned without minimal effort.
2018-12-20
i love this platform it is user friendly. Ideal for editing, signing and amending pdf docs. This service has been so useful and i would definitely recommend it
2018-12-27
PDFfiller is full featured and extremely easy to use. You can add text, images, highlights and shapes with just a few clicks, and position what you add exactly where you want it to be. Who could ask for more from a PDF product? I mean, try doing those things with Adobe Acrobat and you'll quickly see how much easier it is to do with PDFfiller.
2019-11-08
Military Veteran seeking employment with a company in which my skills obtained will be further utilized and challenged for the enhancement of myself and the company.
2023-05-22
So Helpful
So helpful for submitting assignments at school. Wish I didn't have to pay for this amazing function, but understand that the company needs money to continue and I will happily support them :)
2023-03-08
Lifesaver
Create a fillable document and send it out for signature - simple, efficient, affordable. I am in Real Estate and needed an uncommon document for a client, this website saved me hours of tedious re-typing!
2021-10-05
What do you like best?
I love how I can neatly complete compliance filings that don't have a fillable PDF format using PDF filler. I can type on the form in PDF filler instead of having to print a hard copy and hand write or use a typewriter - who even has access to one of those anymore, lol?
What do you dislike?
It can be tricky to get the alignment just right and then save the completed document.
Recommendations to others considering the product:
Great tool for using to complete documents that don't have fillable format.
What problems are you solving with the product? What benefits have you realized?
Completing compliance filings for various States that don't offer fillable PDF forms.
2020-08-31
Merge Name Release Feature
The Merge Name Release feature simplifies the process of handling duplicate names within your system. This tool streamlines your name management, ensuring consistency and accuracy across your database.
Key Features
Identify and merge duplicate names seamlessly
Maintain data integrity with automated processes
User-friendly interface for easy navigation
Customizable options to fit your specific needs
Real-time updates to keep your records accurate
Use Cases and Benefits
Streamline customer relationship management by removing duplicate entries
Improve data quality for marketing campaigns
Enhance reporting accuracy by ensuring unique name listings
Reduce manual data entry errors caused by duplicates
Save time and effort in data management tasks
By addressing the challenge of duplicate names, the Merge Name Release feature helps you maintain a clean and organized database. You can focus on what matters most, knowing your name records are accurate and up-to-date.
For pdfFiller’s FAQs
Below is a list of the most common customer questions. If you can’t find an answer to your question, please don’t hesitate to reach out to us.
What if I have more questions?
Contact Support
How do I merge a release branch?
Open a pull request to merge a feature branch into the develop branch.
Request reviews and wait for approvals.
Force-push any required changes to the feature branch (updating the pull request). ...
Checkout the feature branch locally.
How do I merge changes from one branch to another?
Under Branches, double-click the feature branch that is behind to switch to that branch. Click the Merge button. From the popup that appears, select the commit you want to merge into your feature branch. Check the Creation a commit even if merge resolved via fast-forward option at the bottom.
How do I merge branches in another branch?
Merge another branch into your project branch Click Choose a branch to merge into BRANCH. Click the branch you want to merge into the current branch, then click Merge BRANCH into BRANCH. Note: If there are merge conflicts, GitHub Desktop will warn you above the Merge BRANCH into BRANCH button.
How do I merge a branch into master?
First we run git checkout master to change the active branch back to master. Then we run the command git merge new-branch to merge the new feature into the master branch. Note that git merges merges the specified branch into the currently active branch. So we need to be on the branch that we are merging into.
How do I merge branches in GitHub?
Open the terminal.
Change the current working directory to your local project.
Check out the branch you wish to merge to. Usually, you will merge into master. ...
If there are conflicts, resolve them. ...
Commit the merge.
Review the changes and ensure they are satisfactory.
Push the merge to your GitHub repository.
What does git merge do?
How it works. Git merge will combine multiple sequences of commits into one unified history. In the most frequent use cases, git merge is used to combine two branches. ... Once Git finds a common base commit it will create a new “merge commit” that combines the changes of each queued merge commit sequence.
What is a release branch?
A release branch is created from develop. Feature branches are created from develop. When a feature is complete it is merged into the develop branch. When the release branch is done it is merged into develop and master. ... Once the hotfix is complete it is merged to both develop and master.
Why release branches are created?
So creating the “release” branch marks the “feature freeze” point -- where they decide that only the features they have already developed are going to make it into the next public release. ... When a new feature is working, they merge its branch back into develop. Develop is always moving forward.
What is a master branch?
A branch in Git is simply a lightweight movable pointer to one of these commits. The default branch name in Git is master. As you start making commits, you're given a master branch that points to the last commit you made. Every time you commit, the master branch pointer moves forward automatically.
#1 usability according to G2
Try the PDF solution that respects your time.