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

    access public sub from form

    hi there, Is the following possible: Currently writing some code in UserForm1 and i want to call a public sub from ModuleX. Is this possible? thanks.
  2. eHanSolo

    radiobuttonx value in excel sheet

    hi there, i have about 3 radio buttons embedded in a work sheet in excel. is it possible to find out which radiobutton is currently active? and is it possible to change its value? I know how to do this if the radio buttons were in a form but i have no idea how it works when embedded in a...
  3. eHanSolo

    refresh cell

    hi there, I have a formula (custom function) which uses a named range value that changes every time i select a radio button. Now, how can i get my formula/custom function to rerun every time one of the arguments change without having to click on the cell, press F2 and then return. (even...
  4. eHanSolo

    using vba to position text boxes and arrows in a chart?!

    hi there, I have a chart that has a number of text boxes and arrows already on it. the data gets updated from time to time and it's an absolute pain to re-position everything (cuz everything gets shifted out of place). Is there a way to find out the position of the chart, the line, and the...
  5. eHanSolo

    text boxes and charts problem!

    Hi all, I've got a chart where i've placed a few text boxes and arrows and have then grouped it which is fine. It's really problematic whenever i update my chart. As you can imagine, my chart 'shifts' along when new data is added but the arrows and text boxes are now in the wrong places...
  6. eHanSolo

    word vba clipboard

    hi there, I've got a piece of code in excel where it copies and pastes tables from different word docs in to a single word doc. I have a reference to the Word object lib. I get to about half way and my code just stops working. the large single doc disappears when i'm debugging. I reckon...
  7. eHanSolo

    import data from web page problem

    hi there, i'm trying to get a single figure from a website. I've gone about it by loading the page in Excel which is fine but i want to fully automate this process but can't due to a login prompt. I have the username and password saved so all that's required is for the 'OK' button to be...
  8. eHanSolo

    vba vlookup not working!!

    hi there, trying to use the following but for some darn reason it's not working. I get no error messages and the stepping into it does nothing. Any ideas? set myRng = Worksheets("Monthly").Range("A1:B10000") correctVal =...
  9. eHanSolo

    general question about formula

    hi there, I've seen people enter the following. Can anyone tell me why they add the '+' bit?? I can't seem to figure out the significance of this. so a cell would contain something like: =+A1 thanks for looking/helping! e
  10. eHanSolo

    vba to handle macro prompt and password??

    Hi there, Can anyone help with the following: I want to be able to open an excel workbook with out any user intervention. So i've scheduled a task to open myWorkBook.xls. In here i've put in a sub workbook_open() which it will call other bits and pieces and then close down the workbook when...
  11. eHanSolo

    word vba table

    hi all, i've a table with 4 rows and 2 columns. In each of the rows or 'cells'(1st column), there is a number: 1.1, 1.2, 1.3 and 1.4 I'd like to do a search for say '1.2' and then copy the entire row and paste it in to a separate word document. So i could end up with two word documents; one...
  12. eHanSolo

    Word VBA help

    hi there, i'd like to separate the contents of a big word document in to smaller word documents depending on the table contents. For example, each table cell has a unique number like 1.2.1 I'm quite familiar with excel vba but i'm not quite sure how to tackle this one... any hints, tips and...
  13. eHanSolo

    font formatting when concatenating?

    hi there, was wondering if it's possible to apply formatting like bold, font colour, font size when i'm concatenating a few strings together?? thanks! e
  14. eHanSolo

    increase date with use of button?

    hi there, i have a date in cell A1 showing: May-06 I'd like to have a few buttons that would increase the date in this cell either by one month at a time or 6 months at a time... any ideas?? (hope you all had a great weekend!) thanks! e
  15. eHanSolo

    getting address values of a value from a named range?

    hi there, i'm writing a function where it takes a named range as an argument. With this range it has a number of values and i've managed to get the smallest value (which is what i want by using this: myVal = application.worksheetfunction.small(myNamedRng,1) so far so good. What i then want...
  16. eHanSolo

    getting address values of a named range?

    hi there, I have a named range of which i'd like to get the row part of the adress of the first and last value of the range (the range is quite large and only a portion of that range has values in it).... can someone point me in the right direction in doing this in VBA please?? many many...
  17. eHanSolo

    obtain row of named range?

    hi there, I have a named range of which i'd like to get the row part of the adress of the first and last value of the range (the range is quite large and only a portion of that range has values in it).... can someone point me in the right direction in doing this in VBA please?? many many...
  18. eHanSolo

    send mail button

    hi all, I'd like to send an email, maybe from excel with a macro attached to a button that would automatically send an email once a few fields have been filled in. is this possible at all?? ...any help would be greatly appreciated. thanks. e
  19. eHanSolo

    log graphing recommendations

    hi all, seeing i can't change the log scale to a log chart done in excel... can anyone suggest any good logarithmic XY chart packages out there? something cheap and cheerful? thanks, E
  20. eHanSolo

    excel formla to take variable

    hi all, was wondering if it was possible for a worksheet formula to take in a variable specified by a cell. for example: range(A1).value would contain something like: 'MyFile.xls' then i'll have a formula like: =sum('networkpath here' & range(A1)) possible?? e

Part and Inventory Search

Back
Top