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 strongm 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: wafs
  • Content: Threads
  • Order by date
  1. wafs

    simple vb code for adding columns together

    I need to add a few columns together and it is not working. Total=Sum("R2:AB2") What am I doing wrong? I did a recorder to get this initial forumla, but it is not adding the columns together.
  2. wafs

    RunAutoMacros not working

    I'm trying to get this macro to run when the workbook is opened and keep running the whole time. I get no error, but the macro is not running in the background. Can anyone see why this is not working? Sub Input_NA() With ActiveWorkbook .RunAutoMacros xlAutoActivate End With Dim cell As...
  3. wafs

    Vlookup to different workbook

    I have writen the following code to do a vlookup into a different workbook. I get an compile error - syntax error, any suggestions why. =Application.WorksheetFunction.Vlookup(myrange,workbook[Hardness conversion]!("sheet1").Range("D2:D50"), 1, False)
  4. wafs

    Can you create code to look at +/- a number

    Is it possible to write code where a forumla or if statement looks at +/- a number. Say I run a test that gives me 44 for an answer. I need this to check the standards and if it is more or less then 2 of the standard, I will need an error message. Standard range is 36 and 40, need to look...
  5. wafs

    AutoUpdateFrequency failing

    The error I'm getting is Method 'AutoUpdateFrequency' of object '_Workbook' failed. I have the ThisWindow page set up as workbook and Open, like described in the help file. Any suggestions on why it is failing. Private Sub Workbook_Open() ActiveWorkbook.RunAutoMacros xlAutoActivate...
  6. wafs

    Answer all if statements before looping

    I need this to go through all if statements before it loops. The macro look at the one if statement and goes to the end and loops. I need the macro to do mutliple if statements first then increment and loop. Any suggestions on how to do this. 'Output into destination sheet...
  7. wafs

    Code not looping

    Here is a code that I created and I need it to run through the entire code before it loops. I need the code to look at all the ID numbers before it increments and loops. Any suggestions? Sub copyinfo_to_main_page() ' ' copyinfo Macro ' Macro recorded 4/7/2006 by Wendy Smith ' Dim Cellstart As...
  8. wafs

    Auto Run not working

    Here is the code I wrote and the auto run is not working. Any suggestions on what I'm over looking. Sub Macro12() ' ' Macro12 Macro ' Macro recorded 4/25/2006 by Wendy Smith 'run the macro did cells change any time a entry is made in a cell in 1244 HT-DOC 12 ThisWorkbook.Worksheets("1244...
  9. wafs

    Auto run not working correctly

    I runt his and it seems to run fine, except that it just keeps going down the rows and not looking at For Each cell In Range("L9:M42"). Any suggestions? Sub Macro12() ' ' Macro12 Macro ' Macro recorded 4/25/2006 by Wendy Smith 'run the macro did cells change any time a entry is made in a cell...
  10. wafs

    Help with macro

    Below is a code I created to look for a part number then I need it to put an X under each column heading where the part has been scanned. Right now this code puts an X under all column headings, I just need it to put under certain column headings. Any suggestions? Part Number LotNumber WSH TP...
  11. wafs

    Increment output

    Here is a report that I need to run. I can get the first part number to run, but now I need to increment myrange and rsearch. I need it to keep the same part number and ID number on the same row and when the part number changes, it is placed on a new row. Any suggestions. Part Number ID...
  12. wafs

    How to mark x on same line

    I created a program that goes through and reads where parts have been scanned at the plant. Now I need to change the code around to where it will put a part number on a line then put an X on the same line, but under different columns to show where the part has been scanned. Is this possible...
  13. wafs

    Unable to get the vlookup property

    I have this vlookup in my code and I get the following error: unable to get the vlookup property of the worksheet function class. Can anyone help me on this. Sub update_headers() '==================================================================== ' UPDATE HEADER SHEETS...
  14. wafs

    need this to loop

    I have this going through a source sheet once, but I need it to loop through. I have to have output(7) look at every output(1) before it makes a loop. What am I missing to get the code to do this. output(7) = "CA" + r 'dest sheet part numbers output(8) =...
  15. wafs

    Referencing a row copied over in the macro

    I copy over a piece of information in a macro and need to reference that cell within the same macro. Can this be done?? I've tried several things and they all start looking at where the macro left off. I need the macro to look at first cell (A1) instead of the last row. Here is a small...
  16. wafs

    referencing top row during a macro

    I need to look at information that I just copied over in a macro. How can I refer to the top row again and not to the last row. Here is a small porition of the code. Dim cellstart As Integer 'starting point of informaiton (row) Dim commentstart As Integer 'starting point for comments...
  17. wafs

    need to copy values not formulas

    I created the following code to copy over some information, except that I just need the values copied and not the formula. I think I need to add .value, but not sure where it would go. any suggestions? r = commentsstart c = 0 c = c + 1 y = c +...
  18. wafs

    calculations

    I need to have rows still calculate even if there are NA in the rows. Is this possible?
  19. wafs

    Calculations with NA fields

    I need to calculate a column, but some of the column will have NA in them. I know that if I use the SUM in excel, my final answer would be NA. Is there anyway in VBA that I could get around it? I was looking at something like: If range("A5:A50") <> "" then range("A5:A50")=sum Still working...
  20. wafs

    Unhide rows

    I took the code for hiding rows and tried to reverse the code to unhide the rows. It does not work. Does anyone have any suggestions about unhidding rows and the being of code? Do While Sheets(destsh).Range(reportlocation).Value = ""...

Part and Inventory Search

Back
Top