Saturday, July 6

Tag: excelhelp

Close Open Workbook With VBA

Close Open Workbook With VBA

VBA Workbook And Sheets
INTRODUCTION: Workbook Is A Part Of Application. Worksheets Is A Part Of Workbook. Open Excel File Click Alt + F11 Or Click On Developer Tab And Go Visual Basic Application.One Dialog Screen Will Get OpenClick Insert And Add ModuleCreate Sub Procedure With Any NameMake Sure The Procedure Name Start With String And Without Space.Write The Code In Between Sub And Sub End Click Run Button Or Insert A Form Button In Excel SheetAny Sub Procedure / Macro Can Be Assign To A Button Like This Example To Fire The Event On Clicking The Button.That's It :)Please Check The Images And Video For More Info. Insert Button
Get Workbook Open With VBA

Get Workbook Open With VBA

VBA Workbook And Sheets
INTRODUCTION: Workbook Is A Part Of Application. Worksheets Is A Part Of Workbook. Open Excel File Click Alt + F11 Or Click On Developer Tab And Go Visual Basic Application.One Dialog Screen Will Get OpenClick Insert And Add ModuleCreate Sub Procedure With Any NameMake Sure The Procedure Name Start With String And Without Space.Write The Code In Between Sub And Sub End Click Run Button Or Insert A Form Button In Excel SheetAny Sub Procedure / Macro Can Be Assign To A Button Like This Example To Fire The Event On Clicking The Button.That's It :)Please Check The Images And Video For More Info. Insert Button
Copy Data From One Workbook To Another With VBA

Copy Data From One Workbook To Another With VBA

VBA Workbook And Sheets
INTRODUCTION: Workbook Is A Part Of Application. Worksheets Is A Part Of Workbook. Open Excel File Click Alt + F11 Or Click On Developer Tab And Go Visual Basic Application.One Dialog Screen Will Get OpenClick Insert And Add ModuleCreate Sub Procedure With Any NameMake Sure The Procedure Name Start With String And Without Space.Write The Code In Between Sub And Sub End Click Run Button Or Insert A Form Button In Excel SheetAny Sub Procedure / Macro Can Be Assign To A Button Like This Example To Fire The Event On Clicking The Button.That's It :)Please Check The Images And Video For More Info.
Create New Workbook And Sheets With VBA

Create New Workbook And Sheets With VBA

VBA Workbook And Sheets
INTRODUCTION: Workbook Is A Part Of Application. Worksheets Is A Part Of Workbook. Open Excel File Click Alt + F11 Or Click On Developer Tab And Go Visual Basic Application.One Dialog Screen Will Get OpenClick Insert And Add ModuleCreate Sub Procedure With Any NameMake Sure The Procedure Name Start With String And Without Space.Write The Code In Between Sub And Sub End Click Run Button Or Insert A Form Button In Excel SheetAny Sub Procedure / Macro Can Be Assign To A Button Like This Example To Fire The Event On Clicking The Button.That's It :)Please Check The Images And Video For More Info. Insert Button
Compare Time Using If Formula

Compare Time Using If Formula

Logical, Statistical
First Select Any Of The Cell For Output Result. Apply The Formula '=IF(TIME(11,17,30)=D2,"Yes","No") Make Sure That Time After 12:00 Hr Is 13:00 As By Default The Time Value Is In 24 Hrs Format. If You Change The Format To 12 Hrs Then It Fine to Have 01;00 Hrs. But Its Vary With Time Formats. As A Result You Can Choose The Output With If Formula. That's It: :)
Split Or Extract The Data Having More Than One Line In Single Cell

Split Or Extract The Data Having More Than One Line In Single Cell

FORMULAS
To Extract Or Split These Type Of Data Please Follow The Step Shown Below.First Select The Cell Having That Kind Of Data.Copy The Cell.Now Open The Note Pad.Remove Double Quote From Start Point And From End Point.Now Copy All Data From Notepad Ctrl + A.Now Go To Excel And Select The Same Range Or Cells Or Whole Column Where You Want The Data To Get Populate.Now Right Click And Paste As Text And You Will Have All Those Data In Separate Cells.Now If Needed Copy Those Data And Transpose T o Column From Rows.That's It :)
Use Of Cells Range Object With Variable In Excel VBA

Use Of Cells Range Object With Variable In Excel VBA

VBA, VBA Range
INTRODUCTION: Range Or Cells Is Used To Define The Start And End Point For A Particular Selection Of Cells. Examples "A1:A5" or "A1" Etc... Open Excel File Click Alt + F11One Dialog Screen Will Get OpenClick Insert And Add ModuleCreate Sub ProcedureMake Sure The Procedure Name Start With String And Without Space.Write The Code In Between Sub And Sub End Click Run ButtonBy Clicking The Range Data Will Get Selected.Declare Variable - Dim RNG as Range / To Copy And Paste Data Use Dim Copyy= Range("A1:A6") / Dim Pastee As RangeNote We Cannot Use Excel By Default Keyword Like Copy - Paste - Cut As Variable.Range Is Object So We Will Need To Use Set Keyword To Apply Particular Range. For Select The Range Use Set RNG = Range("A1:A5").SelectTo Copy The Data Use Set Copyy= Range("A1:A5") To ...
How To Copy And Paste Data Using Button In VBA

How To Copy And Paste Data Using Button In VBA

VBA, VBA Range
INTRODUCTION: Range Is Used To Define The Start And End Point For A Particular Selection Of Cells. Examples "A1:A5" or "A1" Etc... Open Excel File Click Alt + F11One Dialog Screen Will Get OpenClick Insert And Add ModuleCreate Sub ProcedureMake Sure The Procedure Name Start With String And Without Space.Write The Code In Between Sub And Sub End Click Run ButtonBy Clicking The Range Data Will Get Select And All Data Will Be Copied And Pasted Automatically On Another Sheet.For Copy The Data Use Range("a1:a5").Copy Sheets(2).Range("a1")To Cut And Paste Data Use Range("a1:a6").Cut Sheets(2).Range("b1")To Automate The Process Using Button Please Insert A Button Right Click And Assign Related Procedure / Macro To A Button.Any Sub Procedure / Macro Can Be Assign To A Button Like This Exampl...
How To Copy And Paste Data In Different Sheet With VBA

How To Copy And Paste Data In Different Sheet With VBA

VBA, VBA Range
INTRODUCTION: Range Is Used To Define The Start And End Point For A Particular Selection Of Cells. Examples "A1:A5" or "A1" Etc... Open Excel File Click Alt + F11One Dialog Screen Will Get OpenClick Insert And Add ModuleCreate Sub ProcedureMake Sure The Procedure Name Start With String And Without Space.Write The Code In Between Sub And Sub End Click Run ButtonBy Clicking The Range Data Will Get Select And All Data Will Be Copied And Pasted Automatically On Another Sheet.To Copy The Data Use Range("a1:a5").Copy Sheets(2).Range("a1")To Cut And Paste Data Use Range("a1:a6").Cut Sheets(2).Range("b1")That's It :)Please Check The Images And Video For More Info.
How To Copy And Paste Selected Range Data In VBA

How To Copy And Paste Selected Range Data In VBA

VBA, VBA Range
INTRODUCTION: Range Is Used To Define The Start And End Point For A Particular Selection Of Cells. Examples "A1:A5" or "A1" Etc... Open Excel File Click Alt + F11One Dialog Screen Will Get OpenClick Insert And Add ModuleCreate Sub ProcedureMake Sure The Procedure Name Start With String And Without Space.Write The Code In Between Sub And Sub End Click Run ButtonBy Clicking - All Range Data Will Get Copied And Pasted Automatically To Destination Range.To Copy The Content Use Range("a1:a5").Copy Range("b5:b10")For Cut And Paste Data Use Range("a1:a5").Cut Range("b5:b10")That's It :)Please Check The Images And Video For More Info.