Excel Text To Column Tips-1

We have the data like this. मेरे पास ऐसा डाटा है                       We need output like below. we have to split year, month & day. हमें नीचे की तरह आउटपुट चाहिए।                     Use of text column feature, we have to extract year, month & day. Text to Column feature का उपयोग कर , हमें वर्ष, महीना और दिन निकालना है । […]

Read more

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

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

Use of Len Function in Excel Vba Macro

LEN In excel vba we use LEN Function to count number of character is used in any supplied string and we store it at supplied variable.   Excel vba में हम Len Function का प्रयोग किसी String या Cell में मौजूद value का length जानने के लिए करते है कि यहाँ कितने character use हुआ है और उसे हम एक variable पर store करते है.   Example 1:- Sub LEN1() Dim LN As Integer LN = Len(“COMPUTER”) End Sub In […]

Read more

Use of Left Function in Excel VBA Macro

LEFT We can use left function in excel & macro both. With the help of left function we extract characters from left site of a cell value or string. हम Left Function का प्रयोग Excel & Macro दोनों में करते हैं. Left Function की मदद से हम किसी Cell की वैल्यू से Left side  से characters निकाल सकते है.   We have Computer value in Cell A1. We use Left(Range(“A1”).Value, 3) to pick 3 character from left side of A1 cell […]

Read more