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: *

  1. EDGE99

    Pivot Table Seems to get corrupted when updating the pagefields with VBA

    Skip do you think setting those objects could be causing other issues? I will play around with this to see if it helps. combo there are no renamed items in the pivot table.
  2. EDGE99

    Pivot Table Seems to get corrupted when updating the pagefields with VBA

    genomon I don't believe it is a refresh issue as I have tried this as well and still gives the wrong data. It actually seems like it corrupts the pivot table because even when I go and manually try and modify and refresh it afterwards it still is messed up.
  3. EDGE99

    Creating Named Ranges via VBA Issue

    I have the need to create several hundred named ranges and have created a VBA script that will loop through and create them. However it puts quotes on each end of the definition when creating it and then I have to go in and delete the beginning quote and ending quote for each one.. Do While...
  4. EDGE99

    Pivot Table Seems to get corrupted when updating the pagefields with VBA

    I am having some very strange issues when trying to update a pivot tables pagefields using VBA. The pagefields do get updated with the correct information but the output of that is returned in the Pivot Table is not correct. When I create a new PT and use the same selection criteria I get the...
  5. EDGE99

    Excel VBA: Missing dates in sequence that need to be poplulated

    Brilliant! Thanks so much Skip! You just saved me a ton of work my friend!
  6. EDGE99

    Excel VBA: Missing dates in sequence that need to be poplulated

    Skip Thanks again I can see the power of using Index & Match now. So now if I wanted to utilize this for multiple countries at a time how would I handle it if I added an additional column Country Brazil 10/1/2012 2.0264 Brazil 10/2/2012 2.0268 Brazil 10/3/2012 2.02585 Brazil 10/4/2012 2.023...
  7. EDGE99

    Excel VBA: Missing dates in sequence that need to be poplulated

    So I used this method and it works! Thank you for making me think outside of the standard box. But I am still a bit confussed on how it works would you be able to explain how this works? Sorry I am no expert and would really like to understand this. Thanks,
  8. EDGE99

    Excel VBA: Missing dates in sequence that need to be poplulated

    Because I have transactions that happen on those weekend days and I have to make sure the correct exchange rate is used in order to properly report the data. You have me intrigued a bit where are you going with this?
  9. EDGE99

    Excel VBA: Missing dates in sequence that need to be poplulated

    Hey Skip, Ther problem is I have several years worth of currency that I have to go through and to manually add in each Sat & Sund would take forever to do. So I am looking to see if there is a way to identify the gap add the two addtional rows and then populate the data via VBA instead of...
  10. EDGE99

    Excel VBA: Missing dates in sequence that need to be poplulated

    Hey Everyone, I have a spreadsheet that contains two columns. Date and Currency Rate Date Rate 10/1/2012 2.0264 10/2/2012 2.0268 10/3/2012 2.02585 10/4/2012 2.023 10/5/2012 2.018875 10/8/2012 2.0306 10/9/2012 2.0297 10/10/2012 2.0355 10/11/2012 2.041725 10/12/2012 2.0426 10/15/2012 2.0426...
  11. EDGE99

    Excel VBA Automation of Internet Explorer

    Gruuu, It didn't work out. Thanks again for the information I did learn a bit more about manipulating IE with so your time was not wasted! Thanks again!
  12. EDGE99

    Excel VBA Automation of Internet Explorer

    Gruuu, Thanks for all of the help. I truly appreciate it! If this doesn't work I am going to have to reach out to the IT folks and see if they have something blocking this ability.
  13. EDGE99

    Excel VBA Automation of Internet Explorer

    Another swing and a miss... I tried using upper but it failed I used the UCase in its place. Am I missing something here? For Each oHTML_Element In HTMLDoc.getElementsByTagName("input") If InStr(UCase(oHTML_Element.outerHTML), "ONCLICK") <> 0 Then oHTML_Element.Click: Exit For End...
  14. EDGE99

    Excel VBA Automation of Internet Explorer

    Yes I agree. I am getting a bit frustrated at this. My mind is about fried at this point so please forgive this next question. How would I use this new statement?
  15. EDGE99

    Excel VBA Automation of Internet Explorer

    So when I cycle through the elements it appears that even though there is a onclick in the input string the properties are not showing anything. So I am assuming that is why the .click doesn't do anything <input class="img" type="image" src="img/btn_submit.jpg" border="0" height="30"...
  16. EDGE99

    Excel VBA Automation of Internet Explorer

    Gruuuu, Thanks for the information. I have been playing around with something similar all morning to try and resolve this but it still doesn't process the element. So I added the part to check the onclick value and for some reason it is not picking up the onclick value. So I put a msgbox...
  17. EDGE99

    Excel VBA Automation of Internet Explorer

    Hey guys I have an Excel workbook that connects to a website and processes data based on the user that is using the workbook. I just found out that they are moving the website app to another company and the login is just a tad bit different. I was just notified today that they are going to move...
  18. EDGE99

    Import Issues With Date Fields

    I have several very large tab delimited text files that I need to import into access. When I import them using the import wizard all of the date values fail to import. I get a "Type Coversion Error" on every record when I try to import the date fields as actual dates. I have modified the...
  19. EDGE99

    Run query based on multiselect list box and specific date range

    Ace, Yes both combo box's and DateSold contain that same number format.
  20. EDGE99

    Run query based on multiselect list box and specific date range

    Ace, I figured out what the problem was. I was putting an "OR" between my date ranges. sWhere = "(" & sWhere & ")" & " And " & sDate & " Or " & eDate So it would show everything >= sDate or everything <= eDate! So changing the Or to an And cleared up the issue. sWhere = "(" & sWhere &...

Part and Inventory Search

Back
Top