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 derfloh 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: *

  • Users: fountain27
  • Content: Threads
  • Order by date
  1. fountain27

    Calling WorksheetFunction Rank

    I am trying to call the Rank function, but keep receiving the following error: Unable to get the Rank property of the WorksheetFunction class. Below is the code I am working w/ any suggestions?3 i = 15 Do Until IsEmpty(wsRawData.Cells(i, 2)) wsRawData.Cells(i, 1).Value =...
  2. fountain27

    End Property

    Does the end property not work when the range is more than one cell? Eg. Range("A1:R4").Select Range(Selection, Selection.End(xlDown)).Select Thanks.
  3. fountain27

    Excel: Number stored as text

    I am working with a system that exports data into Excel. The numbers that are exported Excel stores as text, hence you can not perform any functions until the text is converted to a value. I have been using the worksheet function value(), but it is sloppy and causes my code to run slow. Is...
  4. fountain27

    Insert worksheet function when last cell is not constant

    I am trying to insert the "Subtotal" worksheet function into a cell where the "last cell" will change, hence changing the range of the function. Below is the code I am working w/ Set CellEnd = wsStrRpt.Cells((iLastrow + 1), 14) 'YTD CellEnd.Formula = "=SUBTOTAL(1,N12:N50)" I need to change...

Part and Inventory Search

Back
Top