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

Index Function In Excel-1

INDEX   This function picks a value from a range of data by looking down a specified number of rows and then across a specified number of columns.   यह फंक्शन एक डाटा के दिए गए range से नीचे की ओर से number of rows और फिर दिए गए columns से डाटा उठाता है.   Syntax There are various forms of syntax for this function. इस फंक्शन के लिए अनेक प्रकार का syntax है.   Syntax 1 =INDEX(RangeToLookIn, Coordinate)   […]

Read more

Function to Extract first name

To make a Function in Excel VBA Macro to Extract First Name Excel VBA में एक फंक्शन बनाना है, जो First Name या word को किसी सेल से निकाले.   When we make a macro then we type Sub then macro name like copydata, example given below. जब हम Macro बनातें हैं, तो हम Sub से स्टार्ट करते हैं, फिर मैक्रो का नाम देते हैं. उदाहरण के लिए Sub copydata() End Sub But when we make any function in excel vba then […]

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

Extract First Name From A Cell In Excel

                    I have to extract first name from a cell in excel. हमें एक्सेल में एक cell से first नाम निकलना है.     Here we have only one logic that from start to end, what is the position of first space in cell, we have deduct 1 in that position, then from left side we will pick number character with help of left function to extract first name.   यहाँ हमें […]

Read more