CONCATENATE

Concatenate Function is used to combine value from two cells, columns in excel.

Concatenate function के मदद से एक्सेल में हम दो या दो से ज्यादा फील्ड की value या दो शब्द को आपस में जोड़ते है.

 

 

 

 

 

 

 

 

If we have mango in A1 cell and apple in 1 cell, and we have to put together in excel then we have to use below formula.

 

अगर A1 cell की value mango है और B1 cell ki value apple है, हमें दोनों को इस साथ करना है तो, हम नीचे का formula use करेंगे.

=CONCATENATE(A1,” “,B1)

Output will be “mango apple”

रिजल्ट होगा “mango apple”

 

Here we have used space to combine 2 cell value. we can use anything to do it like hyphen.

 

यहाँ हमने दो cell के value को जोड़ने के लिए space का प्रयोग किया है, इसे हम दूसरे किसी और से भी कर सकते है, जैसे hyphen से.

=CONCATENATE(A1,”-“,B1)

Output will be “mango-apple”

रिजल्ट होगा “mango-apple”

 

Same thing we can do with use of &

=A1&” “&B1

यह हम & का प्रयोग कर के भी कर सकते हैं.

=A1&”-“&B1

Output will be “mango-apple”

रिजल्ट होगा “mango-apple”

 

Click Here to Download File