Convert On Time Object Gratis
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
Edit, manage, and save documents in your preferred format

Convert documents with ease
Convert text documents (.docx), spreadsheets (.xlsx), images (.jpeg), and presentations (.pptx) into editable PDFs (.pdf) and vice versa.

Start with any popular format
You can upload documents in PDF, DOC/DOCX, RTF, JPEG, PNG, and TXT formats and start editing them immediately or convert them to other formats.

Store converted documents anywhere
Select the necessary format and download your file to your device or export it to your cloud storage. pdfFiller supports Google Drive, Box, Dropbox, and OneDrive.

Convert documents in batches
Bundle multiple documents into a single package and convert them all in one go—no need to process files individually.

Preview and manage pages
Review the documents you are about to convert and exclude the pages you don’t need. This way, you can compress your files without losing quality.

Protect converted documents
Safeguard your sensitive information while converting documents. Set up a password and lock your document to prevent unauthorized access.
Top-rated PDF software recognized for its ease of use, powerful features, and impeccable support
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:
It has been exceptional EXCEPT it was a little underhanded the way you tell the user how much it will really cost. NOT Free as advertised. I am okay with it but thought it should be state up front.
2014-08-21
I love the site, I don't like all of the pop ups though! I constantly have to click out of the pop ups when opening a new form. That is my only complaint! But, all in all, I love this site and it helps me be more efficient.
2015-10-14
Everything has worked great and while I honestly don't know what there are companies that still use Fax, they do exist and I need to work with them. Love PDFfiller and everything it provides.
2016-01-04
Very simple to use and create your own invoice for your company and you can e-mail to your client from the same site that also provides a security code for the receiver to access your invoice and you receive a notice when they do.
2017-03-30
I like that I can erase parts and add text of size and font that I like and move it around so it's where I want it. When I erase part it doesn't cause the rest of the document to move around. It stays put. That is essential when I am editing a document with a puzzle at the bottom.
2020-04-10
What do you like best?
It's really easy to use PDFfiller compared to manually adding fields with standard graphic design programs. The usability of PDFfiller is outstanding for people with minimal backgrounds in working with document software. I like that we can make our documents interactive and can use templates to start off our documents without having to plan too much.
What do you dislike?
I have had great results using PDFfiller and can't point out anything to dislike about it.
Recommendations to others considering the product:
PDFfiller can be extremely useful when you have to create documents that are sent out to groups of people and need to be processed as quickly as possible.
What problems are you solving with the product? What benefits have you realized?
I can create fillable documents very fast so that people that received my documents can fill them out without having to print them out. The documents that we produce with form fields are neater. We can process filled forms more smoothly and with fewer errors.
It's really easy to use PDFfiller compared to manually adding fields with standard graphic design programs. The usability of PDFfiller is outstanding for people with minimal backgrounds in working with document software. I like that we can make our documents interactive and can use templates to start off our documents without having to plan too much.
What do you dislike?
I have had great results using PDFfiller and can't point out anything to dislike about it.
Recommendations to others considering the product:
PDFfiller can be extremely useful when you have to create documents that are sent out to groups of people and need to be processed as quickly as possible.
What problems are you solving with the product? What benefits have you realized?
I can create fillable documents very fast so that people that received my documents can fill them out without having to print them out. The documents that we produce with form fields are neater. We can process filled forms more smoothly and with fewer errors.
2020-04-02
This is my first time using it
This is my first time using it, and I am LOVING it. I like that you can save/print/email, etc. So many options. I will be using it again.
2020-02-11
What do you like best?
It's super fast to upload a document and simple to navigate the website. Filling out your PDF couldn't be easier!
What do you dislike?
The point where you save your document could be a little easier to understand but because I've been using them for 7+ years, I've got a handle on it. For someone just starting may find it a tiny bit confusing.
Recommendations to others considering the product:
This is a great platform to turn your PDF forms to fillable forms! It's easy to use and the price is nominal! Totally worth it!
What problems are you solving with the product? What benefits have you realized?
It's so easy to use! Make any PDF fillable! I have a tiny bit of OCD and filling in a form by hand just doesn't look professional enough for me so converting those forms to fillable using PDFFiller is a must!
2022-02-12
great app
Its a great app to use and super easy to understand.the best it has everything you need i the app. its with you 24/7anywhere you go in the world :)
2021-04-16
Convert On Time Object Feature
The Convert On Time Object feature streamlines your workflow, making it easy to manage time-sensitive tasks. With this tool, you can automate the conversion of objects within your projects, ensuring timely updates and efficient operations.
Key Features
Automated conversion of objects based on specific time triggers
Customizable settings to match your project needs
Seamless integration with existing systems
User-friendly interface for easy navigation
Real-time tracking and notifications for updates
Potential Use Cases and Benefits
Managing deadlines for project updates
Ensuring timely conversion in production processes
Automating routine tasks to free up resources
Improving collaboration among team members
Enhancing overall productivity with minimal effort
This feature addresses your need for efficiency and accuracy in project management. By automating the conversion process, you save time and reduce the risk of errors. Invest in the Convert On Time Object feature to keep your projects on schedule and achieve your goals with ease.
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
Which of the following method is used to convert a list of dates like strings into date time objects?
strike() function is used to convert a given string into date time object. It accepts two arguments: date (string) and format (used to specify the format. For e.g.: BY is used for specifying year) and returns a date time object.
How do you parse a date?
Get the input date string. Convert it into java. Util. Instantiate the SimpleDateFormat class by passing the desired (new) format as string to its constructor. Invoke the format() method by passing the above obtained Date object as parameter.
How do I change date format in Python?
old format = '20140716' datetimeobject = date time. Strptime(old format,'%Y%m%d') new format = datetimeobject. Strftime('%m-%d-%Y') print new format. 07-16-2014. Newformat2 = datetimeobject. Strftime('km/CD/BY') print newformat2. 07/16/2014.
How do I use Strike in Python?
We imported date time class from the date time module. The date time object containing current date and time is stored in now variable. The strike() method can be used to create formatted strings.
How do you sort a list of dates?
Drag down the column to select the dates you want to sort. Click Home tab > arrow under Sort & Filter, and then click Sort Oldest to Newest, or Sort Newest to Oldest.
How do you sort a list by date in python?
To sort a Python date string list using the sort function, you'll have to convert the dates in objects and apply the sort on them. For this you can use the key named attribute of the sort function and provide it a lambda that creates a date time object for each date and compares them based on this date object.
How do you sort by date?
Drag down the column to select the dates you want to sort. Click Home tab > arrow under Sort & Filter, and then click Sort Oldest to Newest, or Sort Newest to Oldest.
What does ascending order mean for dates?
A standard order is often called ascending (corresponding to the fact that the standard order of numbers is ascending, i.e. A to Z, 0 to 9), the reverse order descending (Z to A, 9 to 0). For dates and times, ascending means that earlier values precede later ones e.g. 1/1/2000 will sort ahead of 1/1/2001.
#1 usability according to G2
Try the PDF solution that respects your time.