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