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

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

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

How To Convert Data in Columns into Rows in Excel Document

How To Convert Data in Columns into Rows in Excel Document Download Notepad file - Clickhere Copy code here: Function SplitCellToRows(CellVa...

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