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

Excel VBA Code For Clear Cell एक्सेल VBA कोड क्लियर सेल के लिए

# VBA Code to Clear Cell :- To  clear cells using VBA , use a statement with the following structure:- VBA का उपयोग :-  सेल  को साफ करने के लिए Cells.Clear VBA Statement Explanation Item:  Cells. VBA Construct:  Range object. Description:  Range object representing the cells you want to clear. You can usually return a Range object with constructs such as the Worksheet.Range, Worksheet.Cells (with Range.Item), Range.Offset, Range.Resize or Application.ActiveCell properties. If you explicitly declare an object variable to represent Cells, use the Range object data type. Item:  Clear. VBA Construct:  Range.Clear method. Description:  The Range.Clear method clears the Range object you specify (Cells). Range.Clear clears the entire Range object, including values, formulas and formatting. VBA स्टेटमेंट स्पष्टीकरण 1. आइटम: सेल। VBA निर्माण: रेंज ऑब्जेक्ट। विवरण: रेंज ऑब्जेक्ट उन कोश...

SQL > SQL Commands > Select

SQL > SQL Commands  >  Select The  SELECT  statement in SQL is used to retrieve data from a relational database. SQL में SELECT स्टेटमेंट का उपयोग रिलेशनल डेटाबेस से डेटा को पुनः प्राप्त करने के लिए किया जाता है। Syntax Number of Columns SQL Syntax 1 SELECT "column_name" FROM "table_name"; More Than 1 SELECT "column_name1"[, "column_name2"] FROM "table_name"; All SELECT * FROM "table_name"; "table_name" is the name of the table where data is stored, and "column_name" is the name of the column containing the data to be retrieved. "table_name" उस तालिका का नाम है जहां डेटा संग्रहीत किया जाता है, और "column_name" उस स्तंभ का नाम है जिसमें डेटा पुनर्प्राप्त किया जाना है। To select more than one column, add a comma to the name of the previous column, and then add the column name. If you are selecting three columns, the syntax will be, एक से अधिक कॉलम का चयन...

VBA Coding For Login Form लॉगिन फॉर्म के लिए VBA कोडिंग

VBA Coding For Login Form Need  TextBox Name = txtUserName TextBox Name = txtPassword Button Name = cmdSubmit Button Name = cmdClear Button Name = cmdExit & One Excel Sheet which have User ID & Password ----------------------------------------------------------------------- Private Sub cmdClear_Click() txtUserName.Value = "" txtPassword.Value = "" End Sub -------------------------------------------------------------------------- Private Sub cmdExit_Click() ActiveWorkbook.Close savechanges = True End End Sub ---------------------------------------------------------------------------- Private Sub cmdSubmit_Click() Worksheets("User").Range("A1").Value = txtUserName.Value Worksheets("User").Range("A2").Value = txtPassword.Value If (Worksheets("User").Range("C1").Value = True) And Worksheets("User").Range("C2").Value = True Then     MsgBo...