Admin

Looker Studio: Building a Comprehensive Multi-Page Organizational Performance Dashboard

This video tutorial demonstrates how to create a multi-page report in Looker Studio, focusing on organizational performance. It covers data preparation, including unpivoting data in Excel and importing it into Google Sheets. The tutorial then guides viewers through creating a cover page, adding various charts and visuals, utilizing advanced filters and formatting, and applying themes…

Read More

Python Lesson 003: Mastering the Python Syntax

This tutorial provides a foundational overview of key Python concepts, laying the groundwork for further exploration in this versatile programming language. It provides a solid foundation by covering essential concepts like variables, data types, operators, and control flow. These building blocks are crucial for understanding and writing more complex Python programs. By mastering these fundamentals,…

Read More

HTML Editor

This HTML Editor was entirely generated by Google Gemini, an AI tool. This was part of a tutorial, to demonstrate how to create applications without writing codes yourself. Tutorial:https://virtual-school.org/video-tutorials/html/we-asked-an-ai-to-create-a-web-application-for-us-learn-to-build-apps-without-any-coding/ Bold Italic H1 H2 H3 Insert Image Hyperlink Auto Add br

Read More

DAX ACCRINT Function

The DAX ACCRINT function calculates the accrued interest for a security that pays periodic interest. It takes several arguments, including the issue date, first interest date, settlement date, annual coupon rate, par value, frequency of payments, day count basis, and a logical value to determine the calculation method. The function returns the total accrued interest…

Read More

Python Lesson 002: Communicating with Python using Print() and Input() Functions

Python offers a straightforward way to interact with the user through the print() and input() functions. The print() function displays information on the console, taking one or more arguments like strings, numbers, or variables. It can also be used to format output, write to files, and display results in real time. The input() function prompts…

Read More

DAX ABS Function

ABS stands for Absolute Value. It takes a number as input and returns its distance from zero, basically ignoring the positive or negative sign. So, ABS(5) returns 5, and ABS(-3) returns 3. You can use ABS to convert negative numbers into positives for calculations that only work with non-negative values. Imagine you need to find…

Read More