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 निर्माण: रेंज ऑब्जेक्ट। विवरण: रेंज ऑब्जेक्ट उन कोश...

Insert Multiple Blank Row मल्टीपल ब्लैंक रो डालें

👍  If you ever need to insert multiple blank rows into your data, doing it manually could be very time consuming if you have a large data set. Here’s a quick way to do this by inserting a blank row into your data after every Nth record. यदि आपको कभी भी अपने डेटा में कई रिक्त पंक्तियों को सम्मिलित करने की आवश्यकता होती है, तो मैन्युअल रूप से ऐसा करने में बहुत समय लग सकता है यदि आपके पास एक बड़ा डेटा सेट है। हर Nth रिकॉर्ड के बाद आपके डेटा में एक रिक्त पंक्ति सम्मिलित करके ऐसा करने का एक त्वरित तरीका है। Add a column  to the right of your data. If the helper column is in  E1 , then add this formula into  E2  and copy it down to the end of the data. Change N to a number (5 if you want every 5th row etc…). =MOD(ROW(E2)-ROW($E$1)-1,N) Now  highlight  the whole column. Go to the  Home  tab in the ribbon. In the  Editing  section, press the  Find & Select  button. In the drop down menu, select  Find . You ...

Basic Excel Learn by Online ऑनलाइन द्वारा बेसिक एक्सेल जानें