Nested If Statement An If or ElseIf statement inside another If or ElseIf statement. The inner If statements execution is based on…
if statement
-
-
VBA Len Function What if you are given the sentence “Hello World, VBA is an Excellent Language!!” and you are asked to…
-
VBA Error Handling The VBA code is usually prone to errors, the developer can always make mistakes whether its syntaxial or logically.…
-
VBA Split Function When working with VBA Excel, the user may often require splitting a string into substrings based on a given…
-
VBA For Each Loop For Each loop is used to execute a statement or group of statements for each element in an…
-
VBA String Functions The string is the most common data type used to store data in Excel. Therefore String functions become so…
-
VBA For Loop A For loop is a repetition control structure allows a developer to be logical write a loop which needs…
-
Switch Statement To execute a group of statements depending upon the value of an Expression, then we use the Switch Case. Here,…
-
VBA Functions A function is a piece of code that performs a specific task and returns the result. Functions are mainly used…
-
VBA TRIM Function Excel is all about manipulating and working the data. These data are usually imported from other database channels or…