Link to home
Start Free TrialLog in
Avatar of Andreas Hermle
Andreas HermleFlag for Germany

asked on

Add a file extension to the cells of the current column using an input prompt

Dear Experts:

I would like to perform the following action on all the cells of the current column (one cell is activated in the current column)            
            
1. Prompt the user to enter a file extension in an inputbox (only characters are allowed, no numbers)            
2. Add this extension to all the values in the current column      

For example: User enters '.pdf' in the inputbox      

Current Column      Current Column after running the macro      
MyFirst_File            MyFirst_File.pdf
MySecondFile            MySecondFile.pdf
MyThirdFile            MyThirdFile.pdf

Help is much appreciated. Thank you very much in advance.

Regards, Andreas
Avatar of Joe Howard
Joe Howard
Flag of United States of America image

This should do what you want:
Option Explicit

Sub ScrachMacro()

    Dim oRng As Range, oCell As Range
    Dim strFileExtension As String

ReturnTo:
    strFileExtension = InputBox("Please enter an extension.", "Waiting...")

    If AllLetters(strFileExtension) = False Then
        If strFileExtension <> "" Then
            MsgBox "Sorry you entered illegal character(s).", vbCritical
            GoTo ReturnTo
        Else
            Exit Sub
        End If
    Else
        If Left(strFileExtension, 1) = "." Then
            'do nothing
        Else
            strFileExtension = "." & strFileExtension
        End If
        Set oRng = Range("A1", Range("A1").End(xlDown))
        For Each oCell In oRng
            oCell.Value = oCell.Value & strFileExtension
        Next oCell
    End If

End Sub

' Return True if the string contains only letters.
Public Function AllLetters(ByVal txt As String) As Boolean
Dim ch As String
Dim i As Integer

    AllLetters = True
    txt = UCase$(txt)
    For i = 1 To Len(txt)
        ' See if the next character is a non-digit.
        ch = Mid$(txt, i, 1)
        If ch < "A" Or ch > "Z" Then
            ' This is not a letter.
            AllLetters = False
            Exit For
        End If
    Next i
End Function

Open in new window

Avatar of Andreas Hermle

ASKER

Hi Macro Shadow,

thank you very much for your highly sophisticated code. I am really impressed. I guess we are almost there. I am afraid to tell you that there is one small bug in the code:

If the user presses Cancel, i.e. does not fill in anything in the InputBox, a trailing dot still gets added to the cell values. As a matter of fact nothing should be added in that case.

Help is much appreciated. Thank you very much in advance.

Regards, Andreas
ASKER CERTIFIED SOLUTION
Avatar of Joe Howard
Joe Howard
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi MacroShadow,

great this did the trick. Thank you very much for your great and professional help.

I tweaked it just a little bit, line 10: '=' instead of '<>'

Regards, Andreas
My bad.