Today, another VBA tip. Sometimes, the InputBox function just isn't enough... you need to let the user point to a cell, instead of having to write in what you want. This cannot be done using this Inputbox, but, can be done using Excel's Inputbox, as follows:
Application.Inputbox(Prompt:="Choose a cell",Title:="Choose",Type:=8)
This returns False if canceled, or a reference to the cell/range selected. That way, you could set it to a variable, like
Set MyRange = Application.Inputbox(.....)
You can see the Online help for more Types of this Inputbox.
By Juan Pablo Gonzalez on 29-Jan-2002
MrExcel.com Consulting can be hired to implement this concept, or many other cool applications, with your data.
MrExcel.com provides examples of Visual Basic procedures for illustration only, without warranty either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. The Visual Basic procedures on this web site are provided "as is" and we do not guarantee that they can be used in all situations.
|