Inputbox to select the range from user to apply a specific function.

imran1059

Board Regular
Joined
Sep 28, 2014
Messages
111
Hi All,

I have following VBA code to remove extra hidden characters from a range. It works fine. But many times I need to change the range for removing extra hidden characters and for this everytime I have to go edit the macro. I want an inputbox to be appeared to select (from user) the range upon which my vba code will be applied. Please help.

Sub CleanAll()
Dim rng As Range


For Each rng In Application.ActiveSheet.Range("A1:D1000").Cells
rng.Value = AlphaNumericOnly(rng.Value)
Next
MsgBox ("Fixed")
End Function
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Hi,
untested but try


Code:
Sub CleanAll()
    Dim rng As Range, cell As Range
    
    On Error Resume Next
    Set rng = Application.InputBox("Select Range", "Range Selection", , , , , , 8)
    On Error GoTo 0
    If rng Is Nothing Then Exit Sub
    
    
    For Each cell In rng.Cells
        cell.Value = AlphaNumericOnly(cell.Value)
    Next cell
    
    MsgBox "Fixed", 48, "Fixed"
End Sub

Dave
 
Upvote 0

Forum statistics

Threads
1,213,559
Messages
6,114,302
Members
448,564
Latest member
ED38

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top