Count Open Workbooks

Count Number of Open Workbooks In Excel with Macro. मैक्रो से एक्सेल में open workbook की संख्या की Count करें।   Sub Name_of_Openwork() For Each Workbook In Workbooks Next Workbook End Sub   This code will identify all open workbooks. यह कोड सभी खुली workbook की पहचान करेगा . Sub Name_of_Openwork() For Each Workbook In Workbooks Msgbox workbook.name Next Workbook End Sub Msgbox will display all open workbooks name. Msgbox सभी खुली workbook ka नाम प्रदर्शित करेगा। Now I have to count, […]

Read more

Go to Linked cell In Excel Formula

In excel when we make formula with another cell, then we require to go that cell. एक्सेल में जब हम किसी और cell से formula बनाते हैं तो हमें उस cell में जाना पड़ता है.   Then we use name box or Goto special methods. उस cell में जाने के लिए हमें Name Box या goto special method का उपयोग करतें हैं.   With Name box:- We type computer in R100 Cell and in cell F4 typed =R100 then value from […]

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