Resources  
  • Why the Component Data Must be a Function in Vue.jsMar 28, 2024. In Vue.js, component data must be returned by a function to ensure data isolation and reactivity. This prevents shared data issues between instances, maintaining code modularity and reliability in component-based architecture.
  • Convert Attachment to Base64 in Power Apps for Email AttachmentsMar 27, 2024. Convert attachment files into Base64 strings in Power Apps. Use Power Automate to trigger email creation, dynamically attaching the Base64-encoded files. Streamline workflow, automating attachment handling and email sending seamlessly.
  • Important PySpark Import StatementsMar 21, 2024. PySpark, the Python API for Apache Spark, has gained immense popularity for its ability to handle big data processing tasks efficiently. In this article, we'll explore the top five import statements in PySpark and delve into their significance in building robust data processing pipelines.
  • Difference Between Full and Runtime Only Builds in Vue.jsMar 20, 2024. The difference between full and runtime-only builds in Vue.js lies in template compilation. Full builds include the compiler, allowing template usage in the code, while runtime-only builds exclude it, reducing bundle size for production.
  • Refactoring Common Code with Azure Bicep User Defined FunctionsMar 19, 2024. Learn how to use Bicep's new feature (in preview currently) called "User Defined Functions" to make deploying your cloud resources on Microsoft Azure easier. This blog will teach you a simple way to write code that you can reuse over and over again, making your projects more organized and easier to manage.
  • Creating Distributed Map-Reduce Job via AWS Step Function Mar 18, 2024. Example of distributed map-reduce job using AWS Step Function on the example of the generative art piece. The article explains using AWS Step Functions to orchestrate lambdas in a distributed serverless architecture, with examples and considerations for robustness.
  • Handling JSON in C#Mar 16, 2024. C# provides seamless JSON handling with System.Text.Json. Easily parse JSON strings into C# objects and vice versa for efficient data manipulation.
  • PowerApps Canvas Patch Upsert Dynamics 365 RecordsMar 15, 2024. Build a PowerApps Canvas app to efficiently manage Dynamics 365 records with Patch and Upsert operations. Seamlessly integrate and synchronize data, enabling customizations and streamlined record management within your Dynamics 365 environment.
  • Tan function from Power Fx using Power AppsMar 08, 2024. Reading this article, you can learn how to perform Tan function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Understanding FORMATMESSAGE() Function in SQL ServerMar 06, 2024. In this article, we will discuss how to use FORMATMESSAGE() function in SQL Server, its advantages and usages with example.
  • Asynchronous Programming in Angular Promises vs. ObservablesMar 06, 2024. Asynchronous programming plays a crucial role in modern web development, especially in Angular applications where data fetching, event handling. In this article, we'll delve into the differences between promises and observables, their usage, and provide code examples to illustrate their behavior.
  • Reverse String Filter in Vue.js Mar 06, 2024. To reverse a string in Vue.js, create a custom filter that reverses the characters. Define the filter, register it globally, and apply it in Vue component templates for efficient string reversal.
  • How to Extract Initials from a String in Vue.jsMar 06, 2024. To extract initials from a string in Vue.js, you can create a custom filter or method. Define a filter or method to process the string and return the initials, providing flexibility in implementation.
  • Automate Email Generation with Power Automate Email SignaturesMar 04, 2024. This HTML snippet fetches an email signature using Microsoft Power Automate. It uses an ID attribute to target a specific div element and utilizes inline code to access and display the signature dynamically from the "Get_Email_Signature" action's output.
  • Difference Between Collect and ClearCollect in PowerAppsMar 01, 2024. In PowerApps, the Collect and ClearCollect functions play pivotal roles in managing data within your applications. Collect appends data to an existing dataset, while ClearCollect replaces the entire contents, refreshing the dataset. Master their nuances for effective data management.
  • What is the Purpose of Vue.js Compiler?Feb 27, 2024. The Vue.js compiler transforms Vue.js templates into JavaScript render functions, parsing templates, generating an optimized Abstract Syntax Tree (AST), and producing efficient render functions for seamless browser execution.
  • Java Applet Design: File, Edit, and Search Options with ActionPerformed FunctionsFeb 26, 2024. Create an Applet with the menu bar and add the following menus: File, Edit and Search. Add default menu items to the respective menus. In the File menu, add the following items: New, Open, Save and Close.
  • An in-depth look at C# 10 and performance improvementsFeb 24, 2024. Get a comprehensive analysis of Ziggy Rafiq's latest C# 10 enhancements and how they affect application performance. Discover how function pointers simplify method invocation, records enhance memory efficiency, and pattern-matching optimisations speed up execution. Discover how to use C# 10 features to optimise performance and user experience for your projects by exploring code examples illustrating these improvements.
  • Template Literals In JavaScriptFeb 24, 2024. JavaScript template literals are an effective tool for working with and creating strings. They were first included in ECMAScript 6 (ES6).
  • What Is a Render Function in Vue.jsFeb 23, 2024. In Vue.js, the render function programmatically generates the virtual DOM for a component, offering flexibility, performance, reusability, and JSX support. Explore its usage and benefits with examples.
  • What Is Function Shorthand in Directive Hooks in Vue.jsFeb 22, 2024. Vue.js directive hooks, using the "function shorthand," provide a concise and readable way to define directive behavior directly within a component, improving simplicity, organization, scoping, and IDE support.
  • How to Pass a Parameter to Event Handler or Callback in React.jsFeb 22, 2024. In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
  • How to Generate a Popup Message Box in Power AppsFeb 16, 2024. This article guides us through implementing a popup message box in Power Apps for deleting gallery items. A standard gallery with a delete button is used. Clicking it triggers a confirmation alert. 'Delete' removes the item, 'Cancel' dismisses.
  • Cybersecurity of External Streaming Data - Integrity Feb 14, 2024. This article delves into cybersecurity considerations for external data, particularly streaming bitstreams. It explores the use of cryptography, focusing on hash functions to ensure the integrity of bitstreams.
  • String.IsNullOrEmpty() vs String.IsNullOrWhiteSpace()Feb 13, 2024. Learn when to use String.IsNullOrEmpty() and String.IsNullOrWhiteSpace() in C#. Understand their differences for effective null and whitespace checks, enhancing data validation and code reliability.
  • Understanding Azure Event GridFeb 12, 2024. Azure Event Grid is a fully managed event routing service that simplifies the development of event-driven applications. In this article, we'll explore the key concepts, features, and use cases of Azure Event Grid, shedding light on its role in building modern, scalable, and responsive applications.
  • Cos Function from Power Fx Using Power AppsFeb 09, 2024. Reading this article, you can learn how to perform Cos function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Merging Arrays within Synapse / Azure Data Factory PipelineFeb 07, 2024. merging arrays in Azure Data Factory / Synapse pipelines. By utilizing functions like "join" to convert arrays to strings, "concat" to combine strings, and "split" to transform strings back to arrays, this solution ensures comprehensive data integration.
  • Mastering T-SQL Rank FunctionsFeb 06, 2024. SQL window functions like ROW_NUMBER, RANK, DENSE_RANK, and NTILE are vital for advanced data analysis. They organize, order, and rank data within result sets. ROW_NUMBER assigns unique sequential numbers, RANK assigns unique ranks allowing ties
  • JavaScript Destructuring: Arrays, Functions, and ObjectsJan 31, 2024. Destructuring is a powerful feature in JavaScript that allows you to extract values from arrays, objects, and function parameters easily.
  • 5 Ways To Handle Rest API Request In React Using CRUD FunctionsJan 31, 2024. Manage REST API requests in React using CRUD operations. Vanilla JS employs Fetch API, useState, and useEffect. Axios library offers cleaner syntax with interceptors. Extend Axios for CRUD operations.
  • Power Function from Power Fx Using Power AppsJan 29, 2024. Reading this article, you can learn how to perform Power function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Calling Your Own Functions In Chatbot - OpenAI Function CallingJan 22, 2024. This article explains how we can make a call to external functions using OpenAI’s Assistant API. Learn to call external functions using OpenAI's Assistant API. Get API keys, create an assistant, invoke tools, and make API calls. A step-by-step guide for building AI assistants.
  • Lazy Loading In ASP.NET Core 7 Web APIJan 22, 2024. ASP.NET Core 7 Web API. Lazy loading is a technique where related data is only loaded from the database when it is explicitly requested. In Entity Framework Core, lazy loading can be achieved by marking navigation properties as virtual.
  • Simulating Sleep/Wait Functionality in TypeScriptJan 21, 2024. In many programming languages, developers often utilize a sleep or wait function to introduce a pause in the execution of a program for a specific duration.
  • Iterating Over an Array Using Arrow Functions in JavaScriptJan 19, 2024. The ways for Iterating Over an Array using arrow functions in JavaScript. Explore concise array iteration in JavaScript using arrow functions and methods like forEach, map, filter, reduce, and find. Simplify array tasks with clear, short, and effective code examples.
  • What is Hoisting in JavaScript ?Jan 17, 2024. Explore the concept of hoisting in JavaScript, where variable and function declarations are moved to the top of their scope during the creation phase. Learn through examples and enhance coding skills.
  • Concatenate Two Strings in C# Jan 17, 2024. In C#, string concatenation can be achieved using the + operator, String.Concat method, String.Join method, or string interpolation. Choose the method that suits your coding style and project requirements.
  • Building a Secure PHP MySQL Signup/Login Website with Email VerificationJan 15, 2024. Creating a secure signup/login system is essential for any web application that involves user authentication. In this article, I'll guide you through building a PHP MySQL login/signup website with email verification. I'll focus on security best practices, including password encryption using PHP's built-in functions.
  • Sqrt function from Power Fx using Power AppsJan 12, 2024. Reading this article, you can learn how to perform Sqrt function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Exploring Function Behavior in C#Jan 11, 2024. Understanding the nuances of function behavior in C# is vital for crafting well-structured and efficient code. Whether dealing with functions that involve no arguments, no return values, or exploring the versatility of function overloading, developers can leverage these concepts to create modular, readable, and adaptable code.
  • Exploring the Power of Action and Func Delegates in C#Jan 10, 2024. Delegates play a pivotal role in C# programming, offering the ability to pass methods as parameters, store them as variables, and create custom events and callbacks. Among these, two special types of delegates—Action and Func—stand out for their ability to simplify code, enhancing readability and maintainability.
  • SQL Functions and Examples.Jan 10, 2024. This article provides you with many built-in SQL functions including aggregate functions, date functions, string functions, control flow functions, window functions, and math functions.
  • Log function from Power Fx using Power AppsJan 08, 2024. Reading this article, you can learn how to perform Log function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Sending SMS Notifications with Azure Communication Services in .NETJan 07, 2024. Learn to send SMS notifications with Azure Communication Service using .NET. Follow simple steps like installing the SDK, importing libraries, setting up connection strings, and sending SMS messages with ease.
  • Common Mistakes and How to Avoid Them in C# Jan 05, 2024. In this article, we will learn how to avoid common mistakes in C# programming. From efficient null checking and using tuples instead of classes to optimizing string concatenation and evaluating default values correctly.
  • Ln Function from Power Fx Using Power AppsJan 05, 2024. Reading this article, you can learn how to perform Ln function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Understanding the One-Way Nature of HASHBYTES in SQLJan 05, 2024. This article delves into the cryptographic world of hashing algorithms, emphasizing the irreversible nature of these functions. Learn why HASHBYTES, a widely-used function for creating hash values in SQL Server, isn't designed for decryption but serves as a vital tool for data integrity, password security, and more.
  • Default Lambda Parameters in C# 12Jan 05, 2024. C# 12 introduces a game-changer: default lambda parameters. This article delves into this powerful feature, showcasing its functionalities, advantages, and practical applications through detailed examples across diverse scenarios. Learn how to reduce code duplication and enhance readability.
  • Exp Function from Power Fx Using Power AppsJan 04, 2024. Reading this article, you can learn how to perform Exp function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Abs function from Power Fx using Power AppsJan 03, 2024. Reading this article, you can learn how to perform Abs function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • What is Delegates in C#?Jan 03, 2024. Explore the power of delegates in C#, providing type-safe function pointers for indirect method invocation. Learn declaration, initialization, characteristics, and use cases for enhanced code flexibility and extensibility.
  • Azure Functions in ASP.NET Core Web APIJan 01, 2024. Azure Functions, a component of Microsoft's serverless computing offerings in Azure, enable developers to create and deploy small, event-driven code without managing infrastructure. These functions, supporting languages like C# and JavaScript, automatically scale and integrate with Azure services, streamlining the development of serverless applications and microservices.
  • React Function ComponentsDec 27, 2023. Embark on a magical coding journey into the enchanted land of React function components. Discover the wizardry of creating reusable spells, understand the magic of Hooks, and become the hero coder.
  • JavaScript Replace SpacesDec 27, 2023. Learn how to use the JavaScript replace() method to remove spaces from a string and replace them with another character. The JavaScript replace() method is mostly used to replace the spaces in this article. So here is a quick introduction to the replace() method.
  • Building Azure HTTP Trigger Function to Generate QR Codes from Post Request ResponsesDec 24, 2023. We'll guide you through the process of creating an Azure HTTP Trigger Function using Node.js. The goal is to generate QR codes in response to POST requests.
  • API Development Using Dapper and Microsoft Asp.NET Core Web API Dec 24, 2023. ASP.NET Core is a powerful framework for building web applications, and "Dapper" is a popular micro ORM (Object-Relational Mapping) that works well with ASP.NET Core for database operations. Dapper provides a simple way to interact with databases using raw SQL queries while mapping the results to objects.
  • Create and Debug Lambda Function in VS CodeDec 22, 2023. Create an AWS lambda function in the local environment and debug it before pushing it to a cloud environment. With the help of a few tools such as AWS SAM or serverless framework, developers can emulate lambda environment on their local machine; this allows for rapid iteration and testing before deploying the code base into the cloud.
  • Map() Function in ReactDec 22, 2023. React's map() Function: A Comprehensive Guide with Practical Examples. React's map() function with practical insights. Learn its core principles for manipulating data, from basic array operations to dynamic rendering in React components, enhancing your development proficiency.
  • Building an Azure Queue Trigger Function for Sending Emails with NodemailerDec 22, 2023. In today's digital age, automated processes are essential for improving efficiency and productivity. One such automation is sending emails based on events or triggers. In this blog post, we'll explore how to create an Azure Queue Trigger Function using Node.js and Nodemailer to send emails when a message is added to an Azure Storage Queue.
  • Clean Code : Avoid Too Many Parameters In MethodDec 18, 2023. In this article I will demonstrate code clean up by passing less number of parameters in method. One common challenge developers face is the Excessive parameters in their methods. Excessive parameters in methods can lead to code that is hard to understand, less readability, and challenging to maintain.
  • Azure Durable FunctionsDec 14, 2023. Azure Durable Functions revolutionize cloud application development by providing a resilient framework for serverless workflows. Learn their core concepts, set up using Azure, and implement a C# example for scalable, stateful processes.
  • Reverse String Pipe in AngularDec 14, 2023. Learn how to create a custom pipe in Angular to reverse a string. Follow the steps to generate a pipe, implement the logic, and use it in your Angular application.
  • How to Extract Initials from a String in AngularDec 13, 2023. In this article, we will learn how to extract initials from a string.
  • Power Apps Search Function With ExampleDec 13, 2023. Learn the Power Apps Search function in this article, covering syntax, applying it to a canvas app, and searching items in the Data Vase Account Entity. Explore multiple searches and gallery controls.
  • Advanced Conditional Formatting: Turn On & Off Cell Color with CHECKBOXES in ExcelDec 12, 2023. This article shows how to create advanced conditional formatting in Excel and using the new checkboxes to turn on and off the applied cell colors.
  • Using Date Function in Data Validation in ExcelDec 10, 2023. Learn how to use Excel's DATE function for effective data validation. Set criteria for a date column to ensure entries fall within a specific range, enhancing accuracy and data quality.
  • Guard Functions in AngularDec 07, 2023. Angular's guard functions are the gatekeepers of seamless navigation in applications. From securing routes to managing authentication and implementing role-based access, these functions enforce crucial rules before users can access specific components. This article takes a deep dive into Angular's guard functions, exploring their types and providing practical implementations with code snippets.
  • String Constants in PostgreSQLDec 01, 2023. Delve into PostgreSQL's handling of string constants, which is essential for managing text data. Explore their syntax, handling of special characters, and their versatile use in variable assignment, function arguments, comparisons, and more. Examples demonstrate their significance in tasks like substring replacement, regular expression matching, and date conversion. Elevate your PostgreSQL proficiency in manipulating and storing text data with these insights.
  • Dealing with Date and Time in Humanizer in C#Dec 01, 2023. Learn how to handle date and time in a user-friendly way in C# projects using Humanizer. Covering DateTime and TimeSpan humanization with customization options and real-world use cases for improved user experience.
  • Azure OpenAI Function CallingDec 01, 2023. Tutorial on utilizing the function calling functionality of Azure OpenAi offering.
  • Understanding Window Functions in PostgreSQLNov 30, 2023. In this article, we will learn how to use window functions in PostgreSQL, what are the different types of window functions, and how to write window function queries with examples.
  • How to Convert a Month Number to Month Name in PostgreSQLNov 28, 2023. Learn how to convert a month number to a month name in PostgreSQL using the versatile to_char function. Explore format strings like 'Month' and 'Mon' for full and abbreviated names.
  • Getting Started with Humanizer in C#Nov 27, 2023. In this article, we'll explore how to install and use Humanizer in C#, unveiling both its basic and advanced capabilities. By the end, you'll be equipped to elevate the user experience in your C# applications with Humanizer.
  • VSTACK Append in Excel with Total RowNov 24, 2023. In the article, Explore the power of Microsoft Excel with the LET, VSTACK, and HSTACK functions. This article guides you through creating complex formulas for dynamic data combination and summarization across multiple tables.
  • Ranking Function in SQL ServerNov 23, 2023. This SQL Server tutorial explores ranking functions, including RANK(), ROW_NUMBER(), DENSE_RANK(), and NTILE(). With detailed examples, learn how these functions assign ranks, sequential row numbers, dense ranks, and group distribution in result sets.
  • How to Trigger Service Bus using Azure Function?Nov 15, 2023. In this article, we will learn how to trigger service bus queue using azure function.
  • Data Types In JavaScript Nov 10, 2023. Data types is most important concept in javascript and very useful logic in programming.Best concepts for fresher interview questions.
  • Efficient Data Integration using HSTACK & XLOOKUP FunctionsNov 07, 2023. This article effectively explains how to integrate data from different sources using Excel's HSTACK and XLOOKUP functions. The step-by-step breakdown and the clear demonstration with sample data make it easy for readers to understand and implement the data integration process seamlessly.
  • How to use Power Automate to split a string into an arrayNov 06, 2023. This article explains how to turn a string into an array using the Power Automate split function.
  • Java 21: New Features and ExamplesNov 02, 2023. Java 21 is a major release that includes a number of new features and improvements that make Java more concise, expressive, safe, and performant. Some of the most significant new features include record classes, sealed classes, pattern matching for instanceof, virtual threads, and sequenced collections.In short, Java 21 is a must-have update for any Java developer. It includes a number of new features that can help you to write better code, faster.
  • Azure Functions C#Oct 23, 2023. Microsoft’s primary compute service is Azure function C#. We gain agility in development by focusing on our code and not worrying about server maintenance by using Azure functions. We are seeing the advantages of Azure functions and the simplicity of the event-driven model functions for integrating Azure services.
  • What is Lead and Lag in SQL Server?Oct 20, 2023. SQL Server offers the LEAD and LAG functions for accessing data from subsequent and previous rows in a result set. These functions are instrumental in data analysis and complex query development, enhancing data accessibility and interpretation.
  • Convert String to JSON using Power Automate Microsoft Flow Oct 18, 2023. Learn to convert a string to JSON in Power Apps. Explore two methods: the JSON expression and the Parse JSON Data Operation, followed by reading the JSON data for effective data manipulation.
  • Windows Functions in SQL ServerOct 17, 2023. Windows functions in SQL Server are a powerful set of functions that operate across a specific "window" of rows defined by the OVER() clause. These functions allow for computations and aggregations over this defined window, enabling analytical and statistical calculations without altering the overall result set. Commonly used functions include ROW_NUMBER(), RANK(), DENSE_RANK(), SUM(), AVG(), and COUNT(). These functions greatly enhance query capabilities, aiding in tasks such as ranking data, calculating running totals, and performing comparative analyses within specified partitions or orderings. They play a vital role in advanced SQL operations and reporting.
  • TripleDES Encryption and Decryption in C#Oct 16, 2023. Encryption is the process of rendering data unreadable to safeguard it from unauthorized access. It's widely applied in banking, e-commerce, communication, and security. TripleDES (Triple Data Encryption Standard) is a long-standing encryption method, utilizing three 56-bit keys for both encryption and decryption, also known as symmetric-key encryption. This article delves into TripleDES, elucidating its workings, strengths, and limitations. It compares TripleDES with contemporary encryption methods, placing it within the context of modern cryptography.
  • Exploring Patterns in Azure Durable FunctionsOct 09, 2023. This article explains the patterns of azure durable functions.
  • Python in Excel Data Analysis using the New PY FunctionOct 04, 2023. This article delves into performing Data Analysis using the new Python in Excel PY function
  • Implementing DATEDIFF Function In Data Factory / Synapse Via Pipeline ExpressionsSep 27, 2023. Implementing DATEDIFF function in Data Factory / Synapse via Pipeline ExpressionsImplementing the DATEDIFF function in Azure Data Factory or Azure Synapse Analytics using pipeline expressions allows you to calculate the difference between two dates and times. This can be helpful for various data integration and transformation tasks, such as calculating the age of records, measuring time intervals, or scheduling data pipelines based on date differences.
  • Functions in R ProgrammingSep 25, 2023. In this article, we will delve into the world of functions in R programming, exploring their syntax, examples, outputs, and even creating flow diagrams to illustrate their operation.
  • Exploring Anonymous Functions in C# Sep 18, 2023. Exploring Anonymous Functions in C#
  • Azure Function Data Migration with ASP.NET Core Web APISep 15, 2023. Creating an Azure Function for data migration from one database to another using an ASP.NET Core Web API involves several steps. In this example, I'll provide a high-level overview and code snippets for each step. Please note that this is a simplified example, and you should adapt it to your specific needs.
  • DateTime in SQL ServerSep 13, 2023. In this article we will learn about DateTime in SQL Server
  • Azure Functions Proxies: URL Rewriting and API CompositionSep 12, 2023. Azure Functions Proxies are a powerful feature that allows you to define proxies to control the behavior of HTTP requests and responses to and from your Azure Functions. You can use them for URL rewriting, request/response transformation, and API composition. Here are the steps to use Azure Functions Proxies in an ASP.NET Core application:
  • Securing .NET/ASP.NET Core Apps with Azure Key Vault Middleware Sep 08, 2023. Securing secrets in a .NET/ASP.NET Core application using Azure Key Vault is crucial for protecting sensitive information like API keys, connection strings, and other configurations. In this example, we'll walk through creating an ASP.NET Core application that leverages Azure Key Vault to store and retrieve secrets. We'll also implement a custom middleware for secure secret retrieval in real-time.
  • Boost Azure Function Performance Using Isolated .NET Core Sep 07, 2023. Boosting the performance of Azure Functions using Isolated .NET Core is a great way to ensure that your serverless applications are both scalable and efficient. In this example, we'll walk through a real-world use case and provide a coding example to demonstrate how to optimize Azure Functions with Isolated .NET Core.
  • Using PowerApps Filter Function for All SharePoint List ColumnsSep 06, 2023. This blog will show you how to use the Filter function to organize information in different SharePoint list columns, whether they contain words, numbers, dates, or choices. We'll make it easy with step-by-step instructions, so you can set up filters and customize your app's look. Get the most out of your SharePoint data by learning how to use the Filter function in PowerApps effectively.
  • Serverless Computing with Azure Functions with ASP.Net Core Web APISep 05, 2023. ASP.NET Core Web API, along with a real-world use case, can be a powerful way to demonstrate the capabilities of serverless computing in Azure. In this example, we'll create a serverless Azure Function that processes image uploads to a cloud storage service like Azure Blob Storage. When a user uploads an image through the ASP.NET Core Web API, the Azure Function will be triggered to perform some image processing and then save the processed image back to storage.
  • Exploring Math - Trig, Parent - Child and Relationship Functions in DAXAug 29, 2023. This segment goes beyond the basics and explores functions like CALCULATE, FILTER, and ALL. It covers techniques for creating dynamic measures, time intelligence functions, and handling more intricate data modeling scenarios. Learners will gain insights into optimizing DAX formulas, solving real-world business problems, and building sophisticated data models for enhanced reporting and analysis in Power BI.
  • Exploring Statistical, Table - manipulation and Text Functions in DAXAug 29, 2023. This segment goes beyond the basics and explores functions like CALCULATE, FILTER, and ALL. It covers techniques for creating dynamic measures, time intelligence functions, and handling more intricate data modeling scenarios. Learners will gain insights into optimizing DAX formulas, solving real-world business problems, and building sophisticated data models for enhanced reporting and analysis in Power BI.

About string-functions

NA

OUR TRAINING