Range object in excel vba represents a cell or group of cells in excel worksheet. Most of time excel user working with cells in excel. Range Object accept single cell or multiple cell name as argument and refer excel worksheet cells
Copy and Paste Content From a sheet to Another sheet in Excel Macro
This Blog post show you how to copy and paste content from a sheet to another sheet in Excel Macro. This code is done by our student as assignment. public sub test() Dim i, k As Integer Set s1 =
Excel Macro Operators
Mathematical Operators in Excel Macro Operator Action Precedence (1=top; 5=bottom) ^ The power operator 1 * The multiplication operator 2 / The division operator 2 \ The integer division operator – this operator divides two numbers and returns the integer
Data Types in Excel Macro
This Blog Post explain you data types in excel macro. Whenever macro code accept input from user or when you assign value to a variable, you need to define type of data to be store in a variable. for example