top of page

BLOGS


Power Query: Extract Numbers from a Text String
Function: Extracts only the numeric values from a given text. Simply add custom function in Power Query and define your column. Add a new Query from Sources Usage: = ExtractNumbers("Order ID: 123ABC456") → Returns: "123456" Power Query code for use and reuse: let ExtractNumbers = (inputText as text) as text => let NumbersOnly = Text.Select(inputText, {"0".."9"}) in NumbersOnly in ExtractNumbers Choose your column with a text/number to clean (

MirVel
Mar 13, 20251 min read


Power Query: Remove Special Characters from Text
Function: This function, RemoveSpecialChars, cleans a text string by removing special characters, retaining only letters and numbers. Add fx to the blank query (Advanced Editor) Usage Example: Using = RemoveSpecialChars("H3ll0! W@rld#") will return "H3ll0 Wrld". The function operates by removing specified special characters from the input text, ensuring a clean output. Power Query code for use and reuse: RemoveSpecialChars = (inputText as text) as text => let C

MirVel
Mar 13, 20251 min read


Is Artificial Intelligence Diminishing Students' Critical Thinking Skills and Knowledge?
Artificial intelligence (AI) is reshaping education in remarkable ways. Students now have access to a wealth of information and...

MirVel
Mar 4, 20254 min read


Power Query: Reusable Calendar function
This Power Query function dynamically generates a calendar table based on a given start date, end date, and fiscal year start month . It is designed to support time-based analysis in Power BI by including key date attributes, fiscal calculations, and various helper columns. Power Query Calendar Function diagram illustrating parameter inputs for start date, end date, and fiscal start month, with outputs like date, fiscal year, ISO week, and day classifications such as weeke

MirVel
Mar 3, 20252 min read


The Unknown Impact: The Future of AI in Data Science - A Professional Analysis
Artificial intelligence (AI) and data science are merging in ways that could reshape entire industries. As we move forward into an age...

MirVel
Mar 2, 20253 min read


Uncovering Hidden Gems: Mastering Power Automate with Pro Tips and Tricks
Power Automate is a game-changer for boosting productivity. Whether you are just starting out or eager to hone your skills, this post will reveal hidden features and provide practical tips that will help you leverage Power Automate effectively. Understanding Power Automate's Core Features Before we explore specific tips, let's get familiar with the core features of Power Automate. This tool allows users to create workflows that automate tasks across multiple applications. Whe

Admin
Mar 2, 20254 min read
bottom of page




