Hello,
My code currently allows me to select cells with wich to create a chart. (shown below)
Dim varRange As Variant, RangeSel As Range, Month As Variant
On Error Resume Next
Set varRange = _
Application.InputBox("Select a range of cells:", Type:=8)
If IsObject(varRange) =...
How would a newbie (like myself) be able to select the cell range using a cursor, instead of hard coding the cell range, then pass the range on to the code?
For example, my code has:
Dim varRange As Variant
On Error Resume Next
Set varRange = _
Application.InputBox("Select a...
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.