+ Reply to Thread
Results 1 to 52 of 52

If Then Statement - Still Not Working

  1. #1
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    If Then Statement - Still Not Working

    Hi,

    Can someone please help me. I can not figure out the issue with my code. Here is what I have so far:

    Please Login or Register  to view this content.
    It keeps flagging my If statement(first line of code). Also, I have tried my If statement two different ways(one is commented out. I know the middle portion works, but I can not get the first line of code in the if statement right. Does anyone see anything wrong with the if statement(first line or second commented out line)???? Thanks in advance for your assistance with my code. - SEOT

    PS Thanks Mudraker for helping me with code wrap for easy reading. I forgot about that.
    Last edited by SEOT; 01-15-2009 at 08:12 PM.

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464
    Hi,

    I can't see an 'End If' instruction to close the 'If' Statement. That might be your problem.

    Rgds

  3. #3
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Yes I had a End If But Did Not Copy in Code

    Richard,

    I did have a End If, but I forgot to copy it into the code. Here I revised the code with the End If.
    Please Login or Register  to view this content.
    The debugger highlights my first line in the code every time, and I can not figure out why. It looks okay to me based on some other stuff I have and seen. Please help.

  4. #4
    Valued Forum Contributor mudraker's Avatar
    Join Date
    11-10-2003
    Location
    Melbourne, Australia
    Posts
    3,983
    SEOT

    It looks like your are missing some "

    [" & DEFName & "]

    Glad to hear that not wrapping your code in the post I closed was just an oversight - I've even done that once or twice
    Please Read Forum Rules Before Posting
    Wrap VBA code by selecting the code and clicking the # icon or Read This
    How To Cross Post politely

    Top Excel links for beginners to Experts

    If you are pleased with a member's answer then use the Scales icon to rate it
    If my reply has assisted or failed to assist you I welcome your Feedback.

  5. #5
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Could you give me a hint on where you think they should go?

    Mudraker,

    Could you give me a hint on the quotation marks in my code. I am not sure. I have tried it a few different ways. Still not working - SEOT

  6. #6
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573
    For one thing, you are missing the row number for Range(AC).
    e.g.
    Please Login or Register  to view this content.

  7. #7
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Kenneth - Think I got farther

    I tried to read into the code you gave me, and I think my code runs a little further now. It went through some of the instructions now, and it gives me a 424 error though. I am no longer getting my code flagged on the first line though. It looks like progress. Do you know what a 424 error is???

    Here is my new code:

    Please Login or Register  to view this content.

  8. #8
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573
    Rule of thumb, do not use []'s when you are building an object with variable values. Also, try not to mix types like [], Range and cell. It is better to use the fully qualified Workbooks("somename.xls").WorkSheets("somesheetname").Range("somerangename"). This lets intellisense work for you.

    Of course it is perfectly fine to use []'s when you are building a string for your formula. When I build a string for formulas, I do it manually, copy it and then use Debug.Print to verify that I built the proper formula string.

    Your ranges are still not using a column and a row number. If you are using variables for it, they must evaluate to a valid range.

    Always use Option Explicit at the top of your Module.

    I am unclear as to what your While Loop is doing. You have an x=y=z comparison.

    Of course you would need Text.xls open for this code to work.


    Please Login or Register  to view this content.

  9. #9
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464
    Hi

    What are you trying to do with that first If statement
    Please Login or Register  to view this content.
    in particular what are the square brackets supposed to be referring to, and what's the reference to DefName? Is that a Workbook name variable. And then the other thing I can't understand is that you seem to be comparing a column range "AC" with a single cell .Cells(7,2) which doesn't seem to make sense.

    In any case the format of the full line would normally be something like

    Please Login or Register  to view this content.
    HTH

  10. #10
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Kenneth & Richard

    Kenneth,

    I used the brackets[] because I found some code to pull in a file. It worked with part of my project, but I can not get my new code to work. I do not understand everything you are telling me, but I know this works with some other stuff I have. I am not sure if it is killing my new code though

    Richard,

    I am trying to compare one cell value to an entire column in another spreadsheet. Is there another way to do this? Am I not doing this right??

    Thank you both for your time and effort. I am going to keep working on it tonight some and tomorrow. Hopefully, I can get it working some how....- SEOT

  11. #11
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    If I can get my If Statement to work I should be ok

    I believe all my other code is correct. I believe my If Statement is the only problem in my code. Most the other code worked before I added my the If Statement.

  12. #12
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    My Issue Might Be Trying To Compare one cell to a column

    Richard,

    You might have hit the nail on the head. I might not be comparing one cell to the entire column exactly right. I was trying to compare the one cell in a spreadsheet against an entire column in another spreadsheet. Then, I wanted to do something until I found something different in some other columns. Do you have any examples of such a thing or the language to use. I am used to being able to find this type of stuff on the internet, but VBA does not have much out there for you to look at. thanks - SEOT

  13. #13
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464
    Hi,

    OK, if I now understood the requirement correctly I think I'd be inclined to put your If statement in a For..Next loop, where the loop variable is the number of rows in the AC column in which you're wanting to compare each cell with your activesheet cells (7,2)

    Furthermore I'd be inclined to declare a variable for your active(7,2) cell to avoid VBA having to evaluate it each time round the loop - there will be a small time overhead involved otherwise. So (untested) but something like...

    Please Login or Register  to view this content.
    HTH

  14. #14
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Richard - I am going to try some of this tonight and tomorrow

    Richard,

    I am going to try what you mentioned a little later tonight and some tomorrow. I have more time on the weekend to work on this! I will let you know what I find out! I really appreciate all your help! You all are the greatest!!! - SEOT

  15. #15
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Richard or Kenneth - Please Help

    Richard,

    I entered all the code you gave me above. Now, I am getting a run time error '9' on the line below.

    Please Login or Register  to view this content.
    I am currently trying to research what a run time error '9' is, but I am not getting much luck so far. Do you have any ideas??? I am getting tired now, and I might have to pick it up tomorrow. I might look a little bit longer though....

  16. #16
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    Error 9 is subscript out of range. Type ? Error(x) in the Immediate window to see the description for any error number.

    The use of Sheet1 in that code is the name of a VBA component (the CodeName of a sheet), and the variable only has scope in the workbook that contains the sheet, so specifying the workbook is meaningless. So assuming you're referring to the sheet with CodeName Sheet1 in ThisWorkbook (the workbook the code is in) all you need is this:
    Please Login or Register  to view this content.
    If you're referring to a Sheet1 in another workbook, you need to identity it by sheet name or index.
    Entia non sunt multiplicanda sine necessitate

  17. #17
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Kenneth or Richard

    I am trying to go about this in a different way now. I could never get my original idea to work so I have something else. I think you can answer this question easier. Here is what I have:

    Please Login or Register  to view this content.
    This code works partially like my other code posted above, but I still have the same issue as before too(just differently done now). I just need to get startRow and endRow in the bottom most portion of this code. I have want I am looking for commented out at the bottom of this code, but it does not work. Could you please help me ???? Thank U All!!! - SEOT

  18. #18
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Kenneth or Richard---> Still Trying To Figure It Out Here - Help Please

    --------------------------
    Last edited by SEOT; 01-04-2009 at 11:35 PM. Reason: Posted Twice Some How

  19. #19
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Wink SHG, KENNETH, MUDRAKER, OR RICHARD - Getting There!!!

    I really appreciate all the help from everyone so far!!! I believe I am close to what I need now. I appreciate the last little code segment from SHG because I was able to use that in what I have now. Here is what I have so far in the part I have been working on:

    Please Login or Register  to view this content.
    Now, I am stuck on getting the values for cell1, cell2, cell3, and cell4 in the a small section of the code above. Here is the code I want the values of cell1, cell2, cell3, and cell4 to work in.
    Please Login or Register  to view this content.
    I am trying to replace to commented out section of code with the RC referencing.

    Please HeLp - SEOT

  20. #20
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464
    Hi,

    Without working through all the code the error you're probably making is not converting cell1 cell2 etc to an address string. Note that in your "=SUMIF([" ...etc line of code that you are using character strings. So you need to use either

    Please Login or Register  to view this content.
    or alternatively when declaring the Cell1 values declare them as strings in the first place and then use

    Please Login or Register  to view this content.
    Then ensure you build up your SUMIF statement with the appropriate addition of the string values.

    HTH

  21. #21
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    How do put this code with another workbook?

    I think the code above will work if I was using the Activeworkbook, but I am using the other workbook that I access in the code above using Workbooks(DEFName)Sheets("Sheet1"). Do you know how to combine the code you just gave me above with the other workbook inestead of the ActiveWorkbook. I can't seem to get it right still. I keep trying many ways to combine it. - SEOT

  22. #22
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464
    Hi

    What is DefName?

    I can't see where it's been declared and set so I'm assuming it's the actual name of a workbook. In which case I think you need to put quotes around it.

    HTH

  23. #23
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573
    It would be easier to help if you posted an xls. You post snippets where we can't tell what all is going on.

    Somewhere, you must be using:
    Please Login or Register  to view this content.

  24. #24
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Here is my code missing that you asked about...

    This code is in a module that I call into the other pages of the workbook so I can compare information in one spreadsheet against another.

    Please Login or Register  to view this content.
    Do you know how I can incorporate the code given in post #20 with the Workbook named DEFName? I still can not figure this out. Some of this stuff I can not find on the Web or in the books I have. Thanks - SEOT

  25. #25
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129
    Please help me figure this last piece out. I can not figure it out. Anyone know how to do this???? thank you - SEOT

  26. #26
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    SEOT, I'm amenable to helping if you explain lucidly exactly what you're trying to do in a single post. Reading the last 25 posts in this thread is more than I'm willing to tackle.

  27. #27
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Red face I will try to explain what I need in this post

    I have some code that does not work exactly like I want. I need to make a few changes in it. Here is the code I am speaking of:

    Please Login or Register  to view this content.
    I am trying to alter a small part of the code above. I want to make changes in the following lines:

    Please Login or Register  to view this content.
    I am trying to replace the code commented out with the code below it, but it is not accepting the cell1, cell2, cell3, and cell4 variables.

    Richard Buttrey said something about using the following code in place of what I have for the cell1 code and the others(cell2, cell3, cell4):


    Please Login or Register  to view this content.
    This code does not work though. I need to have the DEFName included in it because the DEFName references the other file I am going through. How do I incorporate the DEFName into Richard's code above. I envision something like this

    Cell1 = Workbooks(DEFName).Sheets(Sheet1").Cells(startRow, 9).Address


    but this does not work. I don't know how to combine it with the other sheet. I believe this code Richard gave me would work with the ActiveSheet, but I can not get it to work with the other sheet I am comparing things with. I am not sure how to get this to work. Please help me out here. - SEOT

  28. #28
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    Try replacing this:
    Please Login or Register  to view this content.
    With this:
    Please Login or Register  to view this content.
    If it works, great. If not, look at the formula string in the immediate window and see what's wrong.

  29. #29
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    shg - I am getting an error now on one line

    I think you have the idea for solving this, but I am getting an error on one thing. I get an error on this line:

    Please Login or Register  to view this content.
    It looks like it is working all except this line above. I get an error message that says Run-time error '1004'. Do you know what this means????

    After we get rid of this error, I think it will run? Do you know what could be wrong?? Thank U - SEOT

  30. #30
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    That was the point of printing the formula in the Immediate window.

    SEOT, there is no substitute for learning to debug.

  31. #31
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    SHG -> It looks like it is doing right, but....

    SHG,

    It looks like the formula is doing right, but I can not get the one line mentioned above to work. The one line makes sense, but it does not work. I would like this one line to go through the cells in the active sheet and gather the information from the other sheet. What you have makes sense, but it does not work. This programming language is really picky! Other languages do not seem to be sooo picky! I am still having issues with it, and I worked on it some last night and this morning. - SEOT

  32. #32
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Shg

    When I run the debug statement, the information printed out in the immediate window looks right. I just need to populate this in the cells of the ActiveSheet. The formula you have for this(below) looks fine, but it does not work.

    Please Login or Register  to view this content.
    I want everything put in sForm in the ActiveSheet. Your code looks like it should work but it does not. Do you have any more ideas??? Thank U!! - SEOT

  33. #33
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    What's the formula, SEOT?

    Reset the code when it breaks, and try copying the formula from the Immediate window and pasting it in manually. What happens?

  34. #34
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Shg

    The formula looks good, but it is not right! When I paste it into the ActiveSheet, it does not display the path of the DEFName file like my ole formula used to do. It is picking up the name of the workbook I am opening, but it does not have the path in the formula like it should. How can I get it to pick up the path of the DEFName file???? It should have the path in it too! thanks again for taking time with me- SEOT

  35. #35
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    SEOT, please POST the formula as it's printed in the immediate window.

  36. #36
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    shg

    The immediate window has this

    =SUMIF([1124LaborP9S4.xls]Sheet1!I108:I154, BAKER, W*, [1124LaborP9S4.xls]Sheet1!AB108:AB154)

    It used to have something like this and it worked before I decided to make some changes to the code to do more things

    =SUMIF([1124LaborP9S4.xls]Sheet1!$I$1:$I$2000,"BAKER, W*",[1124LaborP9S4.xls]Sheet1!$AB$1:$AB$2000)

    Do you know what I could be doing wrong??? Thank U SHG for everything you have done so far though! I do appreciate the help!!

  37. #37
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    So you copy the formula from the Immediate window and paste in in manually and it errors?

    What do you have to edit it to to work?

    BTW, the workbook 1124Labor... must be open for this to work.

    Edit: Post the formula that works.
    Last edited by shg; 01-11-2009 at 02:35 AM.

  38. #38
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Shg

    You have to add quotation marks around the person's name to make it work. It should be

    =SUMIF([1124LaborP9S4.xls]Sheet1!I108:I154, "BAKER, W*", [1124LaborP9S4.xls]Sheet1!AB108:AB154)

    in the cell instead of

    =SUMIF([1124LaborP9S4.xls]Sheet1!I108:I154, BAKER, W*, [1124LaborP9S4.xls]Sheet1!AB108:AB154)

    How do you code this into VBA though? I have tried to fix it, and I can not figure that part out.- SEOT

  39. #39
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    Change
    Please Login or Register  to view this content.
    to
    Please Login or Register  to view this content.

  40. #40
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129
    Quote Originally Posted by shg View Post
    Change
    Please Login or Register  to view this content.
    to
    Please Login or Register  to view this content.
    I get a #NAME? in all the cells I am trying to populate after I do this. It looks like we are getting closer, but it still does not work right....

  41. #41
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Shg - #NAME? error

    I think I know why we have a name error. We have single quotes in the formula around the range. Do you know how to take these off? See....

    =SUMIF([1124LaborP9S4.xls]Sheet1!'I108':'I154', "BAKER, W*", [1124LaborP9S4.xls]Sheet1!'AB108':'AB154')

    It is around the I108:I154, and the AB108:AB154. We need to get rid of the single quotes in the code. How do you do that???

  42. #42
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    Look at the strings sRef1 and sRef2. Do they have those single quotes?

    Edit: The single quotes weren't there the last time you posted.

    Edit2: Just parking the code here I used to test:
    Please Login or Register  to view this content.
    Last edited by shg; 01-11-2009 at 04:15 PM.

  43. #43
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Shg

    sRef does not contain single quotes. Here is something funny though. The immediate window has the formula right. I can use the formula out of the immediate window in the cells, and it will work. The cells in my spreadsheet have it with single quotes though after the code goes though, and it does not work there. - SEOT

  44. #44
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    If you can post a workbook stripped to the absolute bare minimum required to demonstrate the problem, I'll look at it.

  45. #45
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Shg

    Working on stripping it now. Also, I have to eat dinner. I will have it to you shortly. Thank U!!! - SEOT

  46. #46
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Smile Shg - Here is a stripped spreadsheet - Thank U!

    I attached the two files(see attachments). I had to strip everything and change other things like you said though. These spreadsheets come from the company I work for, and I don't think they would like the information on them or the spreadsheet getting out. It has some private and proprietary information on them.- SEOT
    Attached Files Attached Files
    Last edited by SEOT; 01-16-2009 at 11:08 PM.

  47. #47
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    shg - Did you get a chance to look at this for me???

    I was wondering if you got a chance to look at this yet?? thanks - SEOT

  48. #48
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    SEOT, I downloaded your workbooks, tried to run the code, moved the active line several times, forced opening of the second workbook, and it just got to be a mess ...

    I don't think I can help with this unless you can dramatically simplify what needs to be done to test it, sorry.

  49. #49
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Shg - I should have mentioned something to you!

    Shg,

    I forgot to mention something. You have to open the FOR Excel_Forum spreadsheet and cut and paste the drive and path to the other spreadsheet(1124LaborP9S4) in the PATH tab before you click the button in the FOR Excel_Forum spreadsheet. This is probably the issue you have with it. I did not think of that when attaching the two spreadsheets. Could you please take a look at it for me. After you place the path and directory of the spreadsheet, you should understand it right away!!! Thanks again - SEOT

  50. #50
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    After all that ...

    Change
    Please Login or Register  to view this content.
    to
    Please Login or Register  to view this content.
    Please report good news only, SEOT ...

  51. #51
    Forum Contributor
    Join Date
    05-20-2008
    Location
    Virginia
    MS-Off Ver
    2003
    Posts
    129

    Oh Wow!!! It works.....Finally!!!! THANK YOU FOR ALL YOUR HELP!!!!

    Thank U SHG!!!! I really really really appreciate this!!! I am so thankful you continued to help until you solved it!!! This will save me some time during the day filling out a spreadsheet!!!

  52. #52
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    You're welcome.

    Don't try anything new for a while ...

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1