Change Case in Excel without Formula | How to change Lowercase to Uppercase in Excel


 Download VBA Code - Click here

Download Addins:- Click here

VBA कोड download करने के लिए यहाँ Click करें। 

Otherwise Copy code from here

या फिर आप कोड को यहाँ से कॉपी कर सकते हैं।

Sub upper()
For Each cell In Selection
If Not cell.HasFormula Then
cell.Value = UCase(cell.Value)
End If
Next cell
End Sub


Sub proper()
For Each cell In Selection
If Not cell.HasFormula Then
cell.Value = Application.WorksheetFunction.proper(cell.Value)
End If
Next cell
End Sub



Sub lower()
For Each cell In Selection
If Not cell.HasFormula Then
cell.Value = LCase(cell.Value)
End If
Next cell
End Sub

Download VBA Code - Click here

Download Addins:- Click here

VBA कोड download करने के लिए यहाँ Click करें। 

कोई टिप्पणी नहीं

टिप्पणी: केवल इस ब्लॉग का सदस्य टिप्पणी भेज सकता है.

Send Multiple Emails From Excel | Send Bulk Mail from Excel Sheet with Attachment in One Click

Send Multiple Emails From Excel | Send Bulk Mail from Excel Sheet with Attachment in One Click Download VBA Code Notepad file - Click here D...

Blogger द्वारा संचालित.