Learn By Example: Python File Organizer – Learn Windows Automation using os, shutil, and pathlib

Welcome back to another Python tutorial, where we dive into Windows automation to streamline your digital workflow. Today, we’re building a script to automatically organize cluttered folders by grouping files into subdirectories based on their specific extensions. We start by leveraging the os library for low-level system communication and the shutil (shell utilities) library, which…

Read More

SQL Window Functions: GROUP BY on Steroids – Without Collapsing Rows

Dive into the power of SQL window functions, a transformative tool for data analysis that enables calculations across related table rows without collapsing them like traditional GROUP BY clauses. These functions, categorized into aggregate (like AVG, MAX, MIN, SUM, COUNT), value (ROW_NUMBER, RANK, DENSE_RANK, PERCENT_RANK, NTILE), and ranking (LAG, LEAD, FIRST_VALUE, LAST_VALUE) types, add calculated…

Read More

SQL Magic: Auto-Generating HTML Reports (With Google Charts and JavaScript)

This tutorial demonstrates how to generate HTML documents using SQL queries. By embedding HTML code within SQL queries, you can create dynamic reports containing text, charts, and other elements. This approach eliminates the need for separate applications and streamlines the report generation process. The tutorial covers topics such as creating SQL tables, inserting data, using…

Read More

Build Your Own Excel Toolbars: Excel Automation with Add-in created in Visual Studio using VSTO

This video provides a step-by-step guide on creating a custom Excel add-in using Visual Basic for Applications (VB.NET) and Microsoft Visual Studio. It starts with setting up the project in Visual Studio, then walks you through designing the add-in ribbon with buttons and options for formatting. Next, you’ll learn how to code the functionality behind…

Read More