DEFINITION:- Merge And Center Command Is Used To Combine Multiple Cells Into A Single Cell.
Step 1- Select The Cells Which We Want To Merge Together Into One Cell.
Step 2- Click On Merge And Center And Check The Result In Below Image.
Definition:- The Orientation Command Can Adjust The Text Vertical And Diagonally By Rotating The Cells Text Clockwise And Counter-Clockwise 90 Degrees.
Step 1- Select The Cell You Want To Format And Click On Orientation Button.
Step 2 – Select The Option In The Orientation Options As Per Your Requirement And Get The Result.
For Example:- Please Check The Image Below.
Definition:- Fill Color Is Used To Add A Color To A Background In A Cell / Database..
Step 1- Select The Cell Or Database Range And Then Click On The Fill Color Icon.
Step 2- Select The Color You Want To Highlight In The Background Of Your Cell Or Database.
Definition:- The Format Painter Is Used To Copy The Formatting Applied To A Cell Or Group Of Cells To Another Cell Or Range Section Of The Excel Sheet. This Is A Quick And Easy Way To Apply Formatting From Existing Data Formatting To Other Cell Data Format.
For Example:- We Have Data In First Range A5 To A9. Which Contains Two Formats- Bold And Italic, And We Have Data In Second Range In B5 To B9 Which Has No Formats. Now We Want To Put The Same Formats Of The First Range To The Second Range. Please Follow The Step Shown Bellow.
Step 1- Select The Range A5 To A9 And Then Click On Format Painter Button On Home Tab As Shown In Image Below. For The Higher Version Its Available As Icon In Same Home Tab.
Step 2- Use The Brush To Paint Over B5 To B9 And We Got The Desire Res...
Definition:- With The Help Of Paste Special One Can Paste A Specific Aspect Of The Copied Data. By Giving The Paste Special Command It Will Open A Dialog Box Which Has Many Options By Using Those You Can Make Your Work Easier. Let Us Consider Using Options Like Those Given In Paste Special.
Steps- Select The Data That You Want To Copy From One Cell Or Range To Another Cell Or Range And Then Right Click On The Mouse And Select Paste Special Command Option Or You Can Directly Select It From Home Tab Menus As Shown in Images.
1. All- It Allows To Paste All The Data Copied From One Cell Or Range Into The Selected Cell.
2. Formulas- It Allows To Copy And Paste Only Formulas Applied In The Copied Cell To The Selected Cell.
3. VALUES- Paste Only The Value Appl...
Definition:- The Copy Command Help You To Reuse Any Data More Than Once To Avoid The Hard Work Of Rewriting Them. It Is Necessary To Use The Paste Command To Use The Copied To Get Rewrite.
Step 1- Select The Data That You Want To Copy From Any Cell Or Range And Then Click On The Copy Button On Home Tab As Shown In Image. Shortcut = Ctrl + C
Step 2- - Select The Cell In Which You Want The Paste The Copied Data And Then Click On The Paste Option On Home Tab As Shown In Image. Shortcut = CTRL + V
Definition:- The Cut Command is used to move any type of data from one place to another. It is necessary to use the paste command to move the cut data to another location (Cells or Range).
Step 1- Select the Data that you want to move from one cell or range to another and then Click On the Cut Command Option on the Home tab as shown in image. Shortcut = CTRL + X
Step 2- Select the cell in which you want selected cut data to appear and then Click on the Paste command Option on home tab as shown in image. Shortcut = CTRL + V
Open Excel FileClick Alt + F11 Or Click On Developer Tab And Go Visual Basic Application.One Dialog Screen Will Get Open.Click Insert And Add Module.Create Sub Procedure With Any Name.Make 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 Sheet.Any Sub Procedure / Macro Can Be Assign To A Button.Then Goto Visual Basic Editor Prepare Sub Procedure.Sub Unhide_Rows_On_IF_Condition() End SubIn That Procedure Whatever Event You Want To Get Fire You Will Have To Right The Code According To It.In This Example We Will Unhide The Rows With For Loop Against If Condition.If You Want To Re Hide It Use This Code ActiveSheet.Range("F"& i ).Rows.Hidden=TrueNote: Please Use Range & Sheets Name ...
Open Excel FileClick Alt + F11 Or Click On Developer Tab And Go Visual Basic Application.One Dialog Screen Will Get Open.Click Insert And Add Module.Create Sub Procedure With Any Name.Make 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 Sheet.Any Sub Procedure / Macro Can Be Assign To A Button.Then Goto Visual Basic Editor And Select Thisworkbook And Then Change The Event To Workbook From The Dropdown As Shown In Image.One Sub Procedure Will Automatically Get PreparedPrivate Sub Workbook_Open() End SubIn That Procedure Whatever Event You Want To Get Fire You Will Have To Right The Code According To It.In This Example We Will Delete Hide And Unhide The Rows.That’s It :)Please Check The...
INTRODUCTION: Worksheets Are Part Of Workbook In Excel Application.
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.DIFFERENCE := For Example Sheets(1).Range("A1").Select Like This You Can Apply Select Method To Select The Sheet & At the Same Time Range Too. But you Can't Apply This Same Method For Activate That's The Difference Between Select And Activate.That's It :)Please Chec...