MIS-Interview Series-1-Fill Blank Cells In Excel With Above Cell Value

Question:-In a range in excel some cells are blank and some are filled. एक्सेल में इक Range में कुछ खाली और कुछ भरे हुए cell है. We have to fill blank cells with upper filled cell value. हमें ऊपर के भरे हुए cell value को निचे के blank सेल में value भरना है.                               We have to select range C3 TO I12, हमें C3 से I12 तक के […]

Read more

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

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