title for input box

Imran Azam

Board Regular
Joined
Mar 15, 2011
Messages
103
Hi guys i have the code below ( thanks to some help)

what i want to do is have a title for the two inbut box, at the moment when i run the below macross and the message box comes up it has 'Micorsoft excel' as the heading and then is has the message ( e.g. Please enter the number you wish to replace")

how can i change or add a heading , i want it to says "Numbers"

below is my current code

Sub Test()

MyArray = Range("A1:K22").Value

EnterA:
A = InputBox("Please enter the number you wish to replace")
If Not IsNumeric(A) Then GoTo EnterA

If Application.CountIf(Range("A1:K22"), A) = 0 Then MsgBox "Number Not Found", vbOKOnly: GoTo EnterA

EnterB:
B = InputBox("Please enter the new number")
If Not IsNumeric(A) Then GoTo EnterB


For Y = 1 To UBound(MyArray, 1)
For X = 1 To UBound(MyArray, 2)
If MyArray(Y, X) = A * 1 Then MyArray(Y, X) = B
Next
Next

Range("A1:F10").Value = MyArray

End Sub

thanks for any help
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Change it to:

VBA Code:
A = InputBox("Please enter the number you wish to replace", "Numbers")
 
Upvote 0
Solution

Forum statistics

Threads
1,215,514
Messages
6,125,273
Members
449,220
Latest member
Excel Master

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