Skip to main content

Excel Keywords एक्सेल शब्दावली


Keywords
Description


Workbook
कार्यपुस्तिका
An Excel File with one or more worksheets
एक या अधिक वर्कशीट वाली एक एक्सेल फ़ाइल
Worksheet
कार्यपुस्तिका
The work area for entering and calculating data made up of columns and rows separated by gridlines. Also called a spreadsheet.
कॉलम और पंक्तियों से बने डेटा को दर्ज करने और गणना करने के लिए कार्य क्षेत्र ग्रिडलाइन द्वारा अलग किया गया है। इसे स्प्रेडशीट भी कहा जाता है।
Value
संख्या
A number entered in the worksheets
वर्कशीट में दर्ज एक संख्या
Range
सीमा
A block of cells in an Excel Worksheet
एक्सेल वर्कशीट में सेल का एक ब्लॉक
Cell
सेल
A cell is the intersection of a column and a row on a worksheet. You enter data into cells to create a worksheet.
एक सेल वर्कशीट पर कॉलम और पंक्ति का कटाव है। वर्कशीट बनाने के लिए आप सेल में डेटा दर्ज करते हैं।
Cell Reference
सेल संदर्भ
The location of a cell in a workbook identified by its column letter and row number. This is also known as the cell’s address.
अपने कॉलम अक्षर और पंक्ति संख्या द्वारा पहचाने गए कार्यपुस्तिका में किसी सेल का स्थान। इसे सेल के पते के रूप में भी जाना जाता है।
Active Cell
सक्रिय कक्ष
The active cell contains the cell pointer, a dark outline around the cell.
सक्रिय सेल में सेल पॉइंटर, सेल के चारों ओर एक काली रूपरेखा होती है।
Sheet Tab
शीट टैब
Tabs that appear at the bottom of the workbook window, that display the name of each worksheet.
टैब्स जो कार्यपुस्तिका विंडो के नीचे दिखाई देते हैं, जो प्रत्येक वर्कशीट का नाम प्रदर्शित करते हैं।
Active Sheet Tab
सक्रिय शीट टैब
The selected worksheet, the tab name of an active sheet is bold
चयनित वर्कशीट, सक्रिय शीट का टैब नाम बोल्ड है
Gridlines
ग्रिड लाइन
Light gray lines that mark the cell borders.
हल्की भूरे रंग की रेखाएं जो सेल सीमाओं को चिह्नित करती हैं।
Name Box
नाम बॉक्स
The text box located to the left of the Formula bar.
फॉर्मूला बार के बाईं ओर स्थित टेक्स्ट बॉक्स।
Formula Bar
फॉर्मूला बार
As you enter data into a cell, it simultaneously appearance in the Formula bar, which is located above the worksheet frame.
जैसे ही आप किसी सेल में डेटा दर्ज करते हैं, यह एक साथ फॉर्मूला बार में दिखाई देता है, जो वर्कशीट फ्रेम के ऊपर स्थित होता है।
Formula
फॉर्मूला
An instruction Excel uses to calculate a number.
एक निर्देश एक्सेल एक संख्या की गणना करने के लिए उपयोग करता है।
Function
कार्य
A predefined formula that depends on specific values to perform a specific calculation.
एक पूर्वनिर्धारित सूत्र जो एक विशिष्ट गणना करने के लिए विशिष्ट मानों पर निर्भर करता है।
Function Name
फंक्शन का नाम
The name given to Excel predefined formulas.
एक्सेल पूर्वनिर्धारित सूत्रों को दिया गया नाम।


Comments

Post a Comment

Your advice or suggestions will be much appreciated and welcomed....

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...