I have the following module to run off a mailmerge and was wondering how I could modify it to close (without saving) the original letter thats opened and the merged doc thats created.
Thanks!
Function MergeNewPacks()
Dim objWord As Word.Document
Set objWord =...
I have the following code to change all cells on a worksheet to uppercase:
******
Sub MakeUppercase()
For Each cell In ActiveSheet.UsedRange
If cell.HasFormula = False Then
cell.Value = UCase(cell.Value)
End If
Next cell
End Sub
******
I can change the UCase to an LCase to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.