Indirect Function In Excel -1

We use Indirect function in excel to converts a plain piece of text which looks like a cell address into a usable cell reference. एक्सेल में  Indirect Function का प्रयोग कर हम Cell Address की तरह दिखने वाले Plain text को usable cell referent में convert करते हैं.   The address can be either on the same worksheet or on a different worksheet. Address उसी sheet पर हो सकता है या फिर दूसरे sheet पर.   Syntax INDIRECT(ref_text, [a1])   […]

Read more

Concatenate Multiple values in one cell

                    We have to Concatenate multiple cells value in one cell. हमें कई सारे cells का value एक cell Concatenate में करना है.   There is some value in cell A1 to A6, we have to concatenate these value A1 to A6 into cell C3 with space यहाँ cell A1 से C6 में कुछ value है,हमें इन सारे values को C3 में space के साथ Concatenate करना है.   Type =A1:A6&” […]

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

Copy All Sheets Data In Master_Sheet

Copy All Sheet Data In Master_Sheet   I have excel file which has 3 sheet,From below vba macro code we can copy all sheets data in master Sheet.   मेरे पास तीन sheet वाली excel फाइल है.निचे लिखे VBA Macro Code से हम सारे  sheets का डाटा Master Sheet में copy कर सकते हैं. Sub Add_All_sheet_Data() sheetcount = Sheets.Count Worksheets.Add after:=Sheets(Sheets.Count) ‘Worksheets.Add after:=Sheets(Sheetcount) ActiveSheet.Name = “Master” For i = 1 To sheetcount Sheets(i).Activate Range(“a1”).CurrentRegion.Select Selection.Copy Sheets(“Master”).Activate Range(“a1048576”).End(xlUp).Offset(1, 0).Select ActiveSheet.Paste If […]

Read more