VBA : Multiple Ways to Identify Duplicates in Excel
This tutorial explains how to identify duplicates in one or more columns using VBA in MS Excel.You can download the following dataset to practice. Download Excel File1. Using Conditional Formatting...
View ArticleVBA : How to Remove Duplicates in Excel
This tutorial explains multiple ways to remove duplicates in Excel using VBA code.You can download the following dataset to practice. Download Excel File1. Remove Duplicates using .RemoveDuplicates...
View ArticleVBA : How to Use For Each Loop
This tutorial explains how For Each loop works in VBA and how we can use it in Excel.For Each Loop is a loop that iterate over each element in a collection ( like array, ranges). It perform an...
View ArticleVBA: How to Unhide One or Multiple Sheets
This tutorial explains how to unhide sheets in Excel using VBA.Syntax to Unhide a SheetThe following VBA code unhides the sheet named "Sheet2" in Excel.Sub UnhideMultipleSheets()...
View ArticleVBA: How to Unhide One or Multiple Rows
This tutorial explains how to unhide one or more rows in Excel using VBA.You can download the following dataset to practice. Download Excel FileSyntax to Unhide a RowThis code Rows("row...
View ArticleVBA: How to Unhide One or Multiple Columns
This tutorial explains how to unhide one or multiple columns in Excel using VBA.You can download the following dataset to practice. Download Excel FileSyntax to Unhide a ColumnThis code...
View ArticleVBA : How to Use Wildcards
This tutorial explains how to use wildcards in VBA, along with examples.Wildcard characters are used to represent one or more characters in a formula. They are useful when data is incomplete or only...
View ArticleVBA: How to Use Like Operator
This tutorial explains how to use Like Operator in VBA.Like Operator is used to compare a string against a pattern.Syntax of Like OperatorVariable Like patternVariable is the string we want to compare....
View ArticleVBA : HOW TO USE NOT LIKE
This tutorial explains how to use NOT LIKE in VBA.The NOT LIKE is used to check if a string does not match a specified pattern. There is no direct NOT LIKE operator in VBA. We can combine the Like...
View ArticleVBA : How to Sort Data
This tutorial explains how to sort data in Excel using VBA.You can download the following dataset to practice. Download Excel FileSyntax of Sort MethodWe can use the following VBA code to sort data in...
View ArticleVBA : How to Filter Data
This tutorial explains how to filter data using VBA in Excel.You can download the following dataset to practice. Download Excel FileVBA Code to Use FilterSub BasicAutoFilter()...
View Article4 Ways to Add Comment in VBA Code
This tutorial explains how to add comments in VBA code.Comments are used to add explanations or notes within the code. They do not affect the execution of the code as the VBA compiler ignores such...
View ArticleVBA : How to Remove Special Characters
This tutorial explains how to remove special characters in Excel using VBA.The following VBA code loops through column A and checks if it matches [A-Za-z0-9] (letters and numbers) and then it returns a...
View ArticleHow to Concatenate in VBA
This tutorial explains how to concatenate strings in Excel using VBA code.You can download the following dataset to practice. Download Excel FileWe can concatenate (combine) strings using the...
View ArticleVBA : How to Find Last Visible Row
This tutorial explains how to find last visible row using VBA code in Excel.You can download the following dataset to practice. Download Excel File1. Using SpecialCells methodThe SpecialCells method...
View ArticleVBA : How to Delete a Row
This tutorial explains how to delete a row in Excel using VBA.You can download the following dataset to practice. Download Excel FileRows(RowNumber).Delete is used to delete a row. Let's consider a...
View ArticleHow to Use DeepSeek in R
This tutorial explains how to run DeepSeek in R. We will use the DeepSeek API which can be used to run latest model of DeepSeek in R.What is DeepSeek?The DeepSeek model is a new AI model that works...
View Article3 Ways to Integrate DeepSeek in Excel
In this post, we will talk about various ways to integrate DeepSeek into MS Excel. DeepSeek has a public API which makes it easy to use DeepSeek in MS Excel.To read this article in full, please click...
View ArticleCloudflare : How to Get Unique Visitors Data
This tutorial explains how to fetch unique visitors data from cloudflare.Cloudflare allows you to download unique visitor data after logging into the dashboard. However it lacks flexibility in...
View ArticleCloudflare : How to Fetch Logs
This tutorial explains how to fetch logs in cloudflare using its GraphQL API.We generally check logs to analyze security threats and performance issues. For example, you can identify the IP addresses...
View Article