Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. MarkGorecki

    Getting values from cells in a range

    Skip, Yes I did. Looking at code and understanding the output helps a bunch. Thanks again. Mark
  2. MarkGorecki

    Getting values from cells in a range

    Thank you PH! That was exactly what I needed. Many of these functions are still new to me and yours and Skips information really helps me to learn. Thanks to both of you.
  3. MarkGorecki

    Getting values from cells in a range

    Hi Skip, Sorry about the clarity of my request. I'm actually asking two questions that are linked. 1. The line Month = Range("varRange")(1, 1) does not seem to work. What I wanted to accomplish with this line is to get the value of the first cell of the selected range. In the...
  4. MarkGorecki

    Getting values from cells in a range

    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) =...
  5. MarkGorecki

    Selecting and using a cell range with a cursor

    Thank you very much! That did the trick.
  6. MarkGorecki

    Selecting and using a cell range with a cursor

    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...
  7. MarkGorecki

    Excel Chart - using VBA to create and format

    This is great, but 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?

Part and Inventory Search

Back
Top