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