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

  1. User4Fun

    Moving inLIneShape

    How do you tell MSWORD using vba to move a picture object from teh document in to the table row 1 column 1?
  2. User4Fun

    Sorting data

    vba code to sort data from largest to smallest starting at C44 ( C43 is the header) then from largest to smallest starting B44 ( B 43 is the header) USING VERSION 2007 PLEAS EHLP
  3. User4Fun

    Wrong starting cells( x,x)

    no biggie, I was going crazy for minute trying to get it to upload a file. lol
  4. User4Fun

    turning chart values on

    it works great, thanky ou very much. What would you do to turn the values off?
  5. User4Fun

    turning chart values on

    Sheets("ACUITY Vs ISTEP GRAPH").Charts("acutep").ApplyDataLabels = True How can I make the values at the points ofthe graph show???
  6. User4Fun

    Wrong starting cells( x,x)

    That does not allow you to upload an attachment! that just makes you put in a url!! I want to browse my hard drive to pick a file, not just give you a url
  7. User4Fun

    Locking the macros etc

    How can I force a certain sheet to start everytime a user oepens a spreadsheet. Also, How do I lock the macros and buttons so a user cannot just right click and changes things. Thank you
  8. User4Fun

    Wrong starting cells( x,x)

    This runs great in 03 version, and one little problems happens in the 07 veriosn. I am begging for help. When you run it for the first time. The infromatoin starts in A44 ( that is right ) the second time arround. It starts itself in A43 ( that is very very bad) Pleas help. I dont have 07...
  9. User4Fun

    Option Buttons

    It is not working, how do you do it? lol
  10. User4Fun

    Option Buttons

    Two options buttons one called yes, and another called no when yes is clicked object.graph("acutep) datalabels values are on when the no is clicked, then the datalabels values is turned off. Thank you for any help you an provide.
  11. User4Fun

    Delete row using vba

    PHV??????????????????? You are my HEROOOOOOOOOOOOOOOOOOOOOO that is all i needed, one set of fresh smart eyes THank you thank you I have been stuck here for two days. I had it as < AND > that is so stupid, I cannot have a numbeer to be smaller than and at the same time bigger than a number...
  12. User4Fun

    For...Next

    I am having nightmares This is suppose to satrt at last row if the value in that row (intFound) is bigger than or equal to intFirstNum and if the same value is smaller than or equal intSecond Then leave it alone and go one row up, otherwise delete that current row. PLEASE HELP intRow = 44...
  13. User4Fun

    _Change

    I have a code to display a msg box when rivate Sub MainTestComboBox_Change() it is a simple msgbox "things change" but it is not working?? any ideas why?
  14. User4Fun

    Delete row using vba

    My delete entire row is not working. Any ideas intRow = 44 For intRow = intLastRow To intRow Step -1 intFound = Cells(intLastRow, intCol).Value If intFound >= intFirstNum Then If intFound <= intSecondNum Then MsgBox...
  15. User4Fun

    Excel Deleting rows using VBA

    First post here, Looking forward to meeting new people. Any ideas what is wrong with this code. intRow = 44 For intRow = intLastRow To intRow Step -1 intFound = Cells(intLastRow, intCol).Value If intFound >= intFirstNum Then If intFound <=...

Part and Inventory Search

Back
Top