Use of LCASE Function In Excel VBA Macro

LCASE

 

We use LCASE function in excel macro. With use of lcase function we convert a string to lower case. We have COMPUTER value in A1 cell, I want that COMPUTER word will be converted in lower case like “computer” and will be pasted in A5 cell. For this we have to use Range(“A5”).Value=LCase(Range(“A1”).VALUE)

LCASE Function का प्रयोग हमलोग Excel Macro में करते है. LCASE का प्रयोग कर हम किसी string के letter को Lower case में convert करते है. A1 cell में COMPUTER लिखा है, मैं चाहता हूँ कि COMPUTER जो Capital में है Lower Case में हो जाये और A5 cell में paste हो जाये. इसके लिए हमें इस macro को प्रयोग करना होगा.

Sub LCASE1()
Range(“A5”).Value = LCase(Range(“A1”).Value)
End Sub

 

 

VBA LCASE FUNCTION1 File Download

Click Here Download File

 

Click Here to Watch Video

Leave a Reply

Your email address will not be published. Required fields are marked *