Category: VBA

Browse all posts in the VBA category.

August 18, 2023 Umesh Manral 0 Comments VBA

VBA For Loop

As we’ve mentioned already, loops are used to repeat a set of statements as many times as necessary until a given condition is met. They help to refract your code,…

Read More
August 18, 2023 Umesh Manral 0 Comments VBA

VBA String Operator

VBA String Operator. String operators are used to manipulate string data. A string can include alphabets, numbers, and special characters in a sequence. A string’s special advantage is that it…

Read More
August 12, 2023 Umesh Manral 0 Comments VBA

What is Macros

Macros are a set of programming commands written in VBA that automate a repeated and standard process in Excel and other Microsoft Office Applications such as Access, PowerPoint, Word, and…

Read More
August 12, 2023 Umesh Manral 0 Comments VBA

Excel VBA InStr

Excel VBA InStr. The VBA InStr function is used to find out if a string is contained in another line of text and it returns the first position of its…

Read More
August 12, 2023 Umesh Manral 0 Comments VBA

VBA Variables

What are VBA Variables? A variable is nothing but a name given to a storage area that our programs can manipulate. Each variable in C has a specific type, which…

Read More
December 4, 2022 Umesh Manral 0 Comments VBA

VBA Error Handling

VBA code is generally error-prone because even the most careful programmer can commit syntax or logic mistakes. Errors and mistakes are common because code can never be perfect. The Error…

Read More