Created
February 4, 2018 11:21
-
-
Save mhajder/c308062d68798ed94e43a94cbcabf920 to your computer and use it in GitHub Desktop.
Excel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Attribute VB_Name = "MałeLitery" | |
Sub MałeLitery() | |
For Each Cell In Selection | |
If Not Cell.HasFormula Then | |
Cell.Value = _ | |
Application _ | |
.WorksheetFunction _ | |
.Proper(Cell.Value) | |
End If | |
Next Cell | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment