Replicate Excel VLOOKUP, HLOOKUP, XLOOKUP in Python (DAY 30!!)
Excel LOOKUP formulas are probably one of the most used formulas (at least for me). So today we’ll replicate the[…]
Read moreUse Python to automate office tasks
Excel LOOKUP formulas are probably one of the most used formulas (at least for me). So today we’ll replicate the[…]
Read moreWe previously talked about how to create calculated columns in pandas, and walked through some simple examples. We can create[…]
Read morePython lambda function, aka anonymous function. Unlike how we create a function with def … statement, where we can name[…]
Read moreIt’s hard to talk about Python without mentioning list comprehension, which is a looping technique in Python. The standard way[…]
Read moreFolks work in the finance industry deal with cashflow projection everyday, but mostly in Excel. Indeed, Excel is easy to[…]
Read moreWe briefly talked about how to create a graph in Python using web data, but it’s not so useful if[…]
Read moreExcel makes plotting a graph very easy. So does Python! Today we’ll take a quick look at how to plot[…]
Read moreToday we’ll learn how to replicate a common Excel task – find and replace data in Python. This tutorial is[…]
Read moreWe have seen many different ways to load data into Python using pandas, such as .read_csv() or .read_excel(). Those methods[…]
Read moreSorting table is a common task in Excel. We sort a table in order to help us view or use[…]
Read more