Some Common Errors In Excel

Why error comes in excel during working ? काम करने के दौरान एक्सेल में Errors क्यों आती है?   For example, If we want to add numeric value, then both value should be numeric, for example =2+5, then output will be 7, but if add text value with number then excel will give error, =2+”Mouse”, then excel will give error.   उदाहरण के लिए, यदि हम numeric value को जोड़ना चाहते हैं, तो दोनों value numeric होना चाहिए, उदाहरण के […]

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