VBA : 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 ArticleCloudflare : How to Get Firewall Events
This tutorial explains how to fetch firewall (security) events in Cloudflare. In simple words, we will explore how to extract information about users blocked by different WAF rules.You need an API key...
View ArticleCloudflare : How to Get Requests Data
This tutorial explains how to fetch total request data and requests by country from Cloudflare. It also covers cached and uncached requests in Cloudflare Workers.Please refer the instructions below to...
View ArticleHow to Add IPs to a Blocklist in Cloudflare
Blocking IP addresses in Cloudflare can help protect your website from spam or malicious attacks.You can follow the steps below to add IPs to a block list and prevent unwanted traffic.Step 1 : Create a...
View ArticleVBA : ActiveWorkbook Vs ThisWorkbook
This tutorial explains the difference between ActiveWorkbook and ThisWorkbook in VBA.When multiple workbooks are open in Excel, the difference between ActiveWorkbook and This Workbook becomes more...
View ArticleHow to Use Web Search in ChatGPT API
In this tutorial, we will explore how to use web search in OpenAI API.By default, the ChatGPT API does not provide the latest web search results. It limits its usefulness for many topics or queries of...
View Article