How do you sort a Python list alphabetically? There are two easy ways to sort a list in Python: using the standard sorted() function or using the .sort() list method. Assuming you have a list of strings you can apply either method to sort the … [Read more...] about Python Lists: Order Alphabetically – Sorting Examples
popular
Google Sheets Multi Select Dropdown List
Can a Google Sheets drop-down list in a cell allow you to do multiple select? Google Sheets doesn't natively support the ability to select more than one item on a drop-down list in a cell, but there is a way where you can click an item in the … [Read more...] about Google Sheets Multi Select Dropdown List
How To Check If Cell Is Empty (Or Not): Google Sheets
How do you check if a cell is empty or blank in Google Sheets? There is a handy function called ISBLANK which enables you to check if a cell is empty. What Does Empty Really Mean? In Google Sheets there are two ways of having an empty cell, … [Read more...] about How To Check If Cell Is Empty (Or Not): Google Sheets
How Many Spaces Is A Tab: 2, 3, 4 or 5?
In Microsoft Word you can control whether or not you want to see the white space characters in your document. This helps to check you haven't incorrectly inserted a tab where a space should have gone and vice versa. Generally, a tab is the same … [Read more...] about How Many Spaces Is A Tab: 2, 3, 4 or 5?
Netsuite Advanced PDF: Loop Through List
When working with NetSuite's Advanced PDF/HTML Templating system it's difficult in being able to find documentation on the syntax structure for working with logic in the templates. One of the requirements I had was being able to determine whether … [Read more...] about Netsuite Advanced PDF: Loop Through List