Create Dropdown List in Excel
Learn how to create dropdown lists in Excel easily in this tutorial to help manage data entry in your workbooks.
Learn how to create dropdown lists in Excel easily in this tutorial to help manage data entry in your workbooks.
In this post, we explore how to convert a list to string in Python! Python provides a .join function that makes this process incredibly easy and flexible. We’ll work through a number of examples and prepare some easy to use… Read More »Learn How to Convert a List to String in Python
Learn everything you need to know to get started with SQLite3 in Python in this all-in-one tutorial!
Functions are an integral part to a data scientist’s toolbelt. In this post, we’ll explore what functions are, how to write them, and some practical examples!
Creating date ranges with Pandas can significantly speed up your workflow when you need to iterate over a number of dates. For example, when we run queries on APIs or databases, we may need to generate a list of dates… Read More »Creating Date Ranges with Pandas
In this post, we’ll explore how binning data in Python works with the cut() method in Pandas. In the past, we’ve explored how to use the describe() method to generate some descriptive statistics. In particular, the describe method allows us… Read More »Binning Data in Python with Pandas’ cut()
In this tutorial, you’ll learn how to use Python and Pandas to VLOOKUP data in a Pandas DataFrame. VLOOKUPs are common functions in Excel that allow you to map data from one table to another. In many cases, this can… Read More »VLOOKUP in Python and Pandas using .map() or .merge()
When you develop a macro in Excel, it’s only available in the workbook you create it in – unless you add it to your Personal Macro Workbook. The workbook is a hidden workbook that runs in the background whenever you open Excel, allowing you to access any of the macros you’ve stored within it.
Learn everything you need to know about the magical and mystical VLOOKUP function in Excel!