Skip to main content

Getting Started with Excel

 

When you open Excel, you will see this screen that will allow you to either open a new workbook or a previously saved workbook.

  1. Open Blank Workbook – Clicking here will allow you to open a new blank workbook in Excel.
  2. Recent Workbooks – This is a quick access area that will show you the last few Excel workbooks you’ve had open recently and allow you to reopen them.
  3. Open Other Workbooks – Clicking this will allow you to open other Excel workbooks not appearing in the recent list.

When you open a new blank workbook in Excel, This is what you’ll see. These are the main areas of an Excel workbook.

  1. Quick Access Toolbar – This area is an “easy access” place that will allow you to perform frequently used actions such as save a workbook, undo the last command, redo the last undone command, check spelling etc… The items in this area can be customized to your preferences.
  2. Ribbon Tabs – This is the tab organisation of all the commands in Excel’s ribbon structure. Commands of a similar nature are grouped together in tabs.
  3. Ribbon – Ribbons contain all of Excel commands. The different ribbons are organised in tabs with similar commands grouped together. This is the main way accessing and performing a command in Excel such as copy/paste, formatting a cell, accessing the formula library, sorting data etc…
  4. Name Box – This area contains the cell address or range name of the currently selected cell or range in a worksheet. Cells in a worksheet have a unique address given by the column letter and row number of the cell (example B7 refers to the cell in column B and row 7). Ranges in a worksheet have a unique address given by the address of the upper left most cell in the range and the address of the lower right most cell in the range joined by a colon (example A1:C5).
  5. Formula Bar – This is where formulas you enter in a worksheet will appear. Formulas can be entered or edited here as well the “insert function” dialog box can be accesses here.
  6. Worksheet Area – This is the area where all of your text, numbers and formulas live.
  7. Status Bar – This area will show information such as if Excel is busy calculating and what percentage of calculations have completed. The status bar also contains a section for “at a glance” statistics like the sum, count, minimum, maximum and average of the currently selected range.

Comments

Popular posts from this blog

What is Excel ? एक्सेल क्या है ?

Excel is a spreadsheet application which have rows and columns to organize data. We can easily organize and analysis data in excel. एक्सेल एक स्प्रेडशीट एप्लिकेशन है जिसमें डेटा व्यवस्थित करने के लिए पंक्तियां और कॉलम हैं। हम एक्सेल में आसानी से डेटा व्यवस्थित और विश्लेषण कर सकते हैं।

VBA Code to Clear Cells with Zero शून्य के साथ सेल को साफ़ करने के लिए VBA कोड

# VBA Code to Clear Cells with Zero:- To  clear cells with zero within a cell range using VBA , use a macro with the following statement structure: शून्य के साथ सेल को साफ़ करने के लिए VBA कोड For   Each   Cell  In   Range If   Cell.Value = myValue  Then   Cell.Clear Next   Cell VBA Statement Explanation Lines #1 and #3: For Each Cell In Range | Next Cell Item:  For Each… In… Next. VBA Construct:  For Each… Next statement. Description:  The For Each… Next statement repeats the statement within the loop (line #2) for each element (Cell) in the cell range (Range) you want to search for zeroes in. Item:  Cell. VBA Construct:  Element of the For Each… Next statement and object variable of the Range object data type. Description:  The Element of the For Each… Next statement is an object variable used to iterate through the elements (Cell) of the cell range (Range) you want to sear...

VBA Coding : For Sharing data by Email With Attachment using Excel data in other Place

' We have some data in Excel that we want to share by email with attachment हमारे पास Excel में कुछ डेटा हैं जिन्हें हम अनुलग्नक के साथ ईमेल द्वारा साझा करना चाहते हैं Sub For_GSTR3B_Report_Share() Dim sWorkbook1 As Workbook Dim wb As Workbook Dim objApp As Object  'For New Workbook Dim ws As Worksheet Dim savepath As String         'Delete all file from folder temp2         On Error Resume Next         Kill "C:\Users\PRAMOD.GARG\Desktop\pk_temp*.*"         On Error GoTo 0               On Error Resume Next         Set wb = Workbooks("Pkgarg_Control_Sheet_With_Gaurav_Coding.xlsm")         On Error GoTo 0         If Not wb Is Nothing Then         MsgBox "It's open"         wb.Activate         Worksheets("For_GSTR3B_Report_Share...