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 करें। 

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

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

Computer Question Merathon Part 1

  Q. What are data chunks transmitted over the internet called? HSSC CET इंटरनेट पर प्रेषित डेटा खंडों को क्या कहा जाता है ? a.       Pa...

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