Merge Name Release For Free
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 need to know more about how to use PDFFiller before I can give it a 5 star rating. Please let me know when the next webinar is scheduled so that I can attend.
2016-05-19
It's made my reporting easier. It may be that I don't know everything to do on this site, but it would be nice if I could resize the boxes on my form.
2016-05-25
Pretty easy to use. There is a good selection of forms to choose from. I used it to fill out CRPs for my renters. I wish you could re-open a form that you had saved and make changes to it...maybe you can, but I couldn't figure out how.
2017-01-30
I had some trouble at first (yesterday), but support was able to help. Now things are going smoothly on my end. It still remains to see how my signers interact with PDF Filler.
2018-06-07
Fab app. In prep for Brexit I have to complete a lot of HMRC forms, many of which are in locked down pdf. pdf filler has been a life saver. Thoroughly recommend.
2019-01-21
Very helpful staff
Very helpful staff. I had a billing issue and it was resolved immediately once i had reported it. PDFfiller is very easy to use. Highly recommended.
2020-03-30
Great app
Great app, and easy to use on the web and on the go..I would like to recommend adding merge pdf app as well. for deleting or moving pages, I recommend ability to delete/move more than 1 page at a time..thanks
2020-03-04
A must have!!
This is a must have for anyone that uses PDF's alot. It can save you a ton of time.
This software is awesome, I love that you can take any PDF and alter it. It is easy to use and comes in handy.
I wish this software was more set up like Word, as in the features and where things are located. Some of the features are hard to find.
2019-11-22
I will be back!
I used PDFfiller to sign severance paperwork. I took the free trial and then THOUGHT I canceled it right away. When the charge came through, I was ready for a fight...but that didn't happen. Kirsten at PDFfiller's live chat was lovely and helpful. She even apologized for the mistake I most likely made. Then she asked if I was sure I wanted to cancel (a trained question). When I said that I didn't need the service, she didn't push and she processed the cancellation and refund right away. If/when I DO need a pdf filling service again, I will use them!
2020-11-25
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.