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 John Tel 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: cbanks
  • Content: Threads
  • Order by date
  1. cbanks

    Msg Box

    Im filtering a selection and I want to insert a msg box to allow the user to work on the spreadsheet once the msg box pops up. Therefore they can make changes then click ok to let the macro continue. How would i do that? Right now its not allowing me to edit. Thanks. Dim lRow5 As Long...
  2. cbanks

    SUM in VBA

    Here is what I am using... With Range("H2:H5000") .FormulaR1C1 = "=SUMPRODUCT(('Data Sheet'!R2C11:R5000C11=RC1)*('Data Sheet'!R2C81:R5000C81=""G - Prior policy incident handling errors""))" .Copy .PasteSpecial Paste:=xlPasteValues End With Ok, here is where it gets tricky...
  3. cbanks

    CountIf Multiple Criteria

    Sorry to start another post but I was new and I marked my last post complete before it actually was. Below is the code I am using. It works great, but I also need to add to it. In addition to what is below I need this to count the corresponding cells in col BW sheet "data sheet" that contain a...
  4. cbanks

    Countif in VBA

    Here is code i have previously used. For Each ce In Range("a2:a" & Cells(Rows.Count, 1).End(xlUp).Row) ce.Offset(0, 1) = WorksheetFunction.CountIf(Range("k2:k"), ce.Value) Next ce However, now my data is on a seperate spreadsheet. Column A i want to use is on sheet "sales rep" and...

Part and Inventory Search

Back
Top