Work on worksheet tab in excel

  To go to first or last sheet First और last sheet पर जाने के लिए.               In excel 2010 or previous version we had the button to scroll to the first and last sheet. Excel 2010 या पिछले versions में हमारे पास first और last sheet पर जाने के लिए  scroll button था।   But from excel 2013 that buttons have been removed. लेकिन एक्सेल 2013 से उस बटन को हटा दिया गया […]

Read more

Match With Index In Excel

Use of Match Function With Index Match Function के साथ Index फंक्शन का प्रयोग     The INDEX MATCH formula is the combination of two functions in Excel: INDEX and MATCH.   INDEX MATCH formula Excel में Index और Match दो Functions का संयोजन है।   =INDEX() returns the value of a cell in a table based on the column and row number. Column और Row की संख्या के आधार पर तालिका में cell का Value लौटाता है। =MATCH() returns the […]

Read more

MKDIR Function in Excel Vba

MKDIR   In excel vba we use MKDIR vba function to create folder. MKDIR Function का उपयोग हम excel vba में folder बनाने के लिए करते है. I have to make a folder in D Drive which name will be computer. For this we have type code हमें D drive में एक फोल्डर बनाना है जिसका नाम COMPUTER होगा. इसके लिए हमें यह कोड लिखना होगा. Sub MakeFolder() MkDir “D:\COMPUTER” End Sub This Code will make folder in D Drive. यह […]

Read more

Match_Function

MATCH Function in Excel एक्सेल में मैच फंक्शन का प्रयोग   With the help of match function we find out position of a lookup value in a row or column. It does not return the value. MATCH supports approximate and exact matching, and wildcards (* ?) for partial matches. We often use match with Index and Vlookup for getting data. It can be used with text and numbers. This function looks for an item in a list and shows its position.   […]

Read more

Index Function In Excel-2

Index     With the help of INDEX function in excel we get value from a table or range on the intersection of a row and column position within the table or range. The first row in the table is row 1 and the first column in the table is column 1.   एक्सेल मं हम Index फंक्शन की मदद से table या range से हम row और columne के कटाव का value प्राप्त करते हैं. पहला row table में […]

Read more

IFERROR FUNCTION IN EXCEL

IFERROR   Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula. Use the IFERROR function to trap and handle errors in a formula. जब हम Excel में formula लगाते हैं तो कभी कभी error आता है, तो हम चाहते हैं कि अगर error आये तो उसके बदले, वो value आये जो हम mention करे , नहीं तो जो formula calculate कर रहा है, वो आये. When we type formula in […]

Read more