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 Westi 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: KTB23
  • Order by date
  1. KTB23

    Fill Down Based On Contents of Another Cell

    Right. I know this is done easily through formulas, but I would prefer to do it within the macro, since I will be running the macro for other purposes once new data is added to the spreadsheet.
  2. KTB23

    Fill Down Based On Contents of Another Cell

    Thanks for the response Skip. Sorry for being a little unclear in my previous posting. I have formulas in cells S2:Y2. So if there is a date in, say, cells A3:A70, I would like the macro to automatically fill down cells S3:S70. However, the last cell that has a date will change from week to...
  3. KTB23

    Fill Down Based On Contents of Another Cell

    I would like to be able to fill down 7 fields in a row for each row that has a date in another field. I want it to stop filling when there is not a date in comlumn A. I would like to do this as part of a macro (that I already created), but I am not very familiar with how to set a range...
  4. KTB23

    Print number of copies from list box inputed by user

    I'm not very VBA saavy, and I'm having a very hard time on figuring something out, so hopefully someone can help me. I have 2 forms, one called "Information" where you input customer information & this is stored in a table. Then there is another "Main" form which has...
  5. KTB23

    Print report with number of copies inputed by user

    I have one form where you input customer information, and then another main form, with a command button which prints the report of all of the new customer information inputed onto labels. I am trying to add a list box to the customer info form for the desired number of copies to print of that...
  6. KTB23

    Print number of copies from list box inputed by user

    I have one form where you input customer information, and then another main form, with a command button which prints the report of all of the new customer information inputed onto labels. I am trying to add a list box to the customer info form for the desired number of copies to print of that...
  7. KTB23

    Find cell value on one worksheet in another worksheet

    But if on my spreadsheet, the names for all of those ranges are in column C, than every instance should be (r, 3), right? I guess I'm just all confused now...
  8. KTB23

    Find cell value on one worksheet in another worksheet

    Here is exactly what I have: Module1: Sub ChooseName(rng As Range) On Error Resume Next Select Case UCase(rng.Value) Case "OPEN" r = Application.Match(Cells(rng.Row, 7).Value, [OpenNameRange], 0) Sheets("OpenIssues").Activate...
  9. KTB23

    Find cell value on one worksheet in another worksheet

    This is still only bringing me to the general worksheet where it should be, but not to the row of the person?
  10. KTB23

    Find cell value on one worksheet in another worksheet

    OK, this works, but is there anyway to be able to click on the "OPEN" or "CLOSED" in column B or C where it will then automatically take me to the row on the other worksheet where the name is listed?
  11. KTB23

    Find cell value on one worksheet in another worksheet

    OK, that is SO much easier than what I was trying to do! Thanks! Any idea on how to get the "OPEN" or "CLOSED" to link to that person's name on the other worksheet where it is located?
  12. KTB23

    Find cell value on one worksheet in another worksheet

    I have a list of people's names in one column on a worksheet called "Main". I also have 2 other worksheets, called "OpenIssues" & "ClosedIssues". I am looking for a way where I can start with the first name in the sheet "Main" and find where it is in the...

Part and Inventory Search

Back
Top