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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ninja1980

  1. ninja1980

    MS 2003 to 2007 Migration

    All Macro settings are on low.
  2. ninja1980

    MS 2003 to 2007 Migration

    It is saved as a *.xlsm, I just cant work out why this is happening??
  3. ninja1980

    MS 2003 to 2007 Migration

    Hi all I’ve got a very interesting little problem (or not as the case may be). I’ve been developing some very simple tools for my company in the form of some standard spreadsheets. We have recently switched over from Office 2003 to 2007. Below is an extract of code from the spreadsheet...
  4. ninja1980

    Merging tables from various worksheets into one larger worksheet

    Hi, I am trying to merge data from various worksheets (all the same format) that only feature the headers and one line of data into a much larger worksheet featuring all the data from the other smaller worksheets with just the one header - minus the all headers. I having a problem making the...
  5. ninja1980

    Worksheet Change Event Help Needed

    That’s for your help PHV. Sorry if some people find silly mistakes irritating......but we all have to start somewhere
  6. ninja1980

    Worksheet Change Event Help Needed

    The range "Type_Select" is the name I've given to the cell I wish to monitor the change in. What have I done wrong to stop this working as intended??? Thanks
  7. ninja1980

    Worksheet Change Event Help Needed

    Hi I’m trying to produce a spreadsheet to hide a number of different rows depending upon the value of a particular cell. I’ve tried to use worksheet related events but I just can’t get it to work. Here is the code ************************************************** Private Sub...
  8. ninja1980

    Update Protected Sheets

    Hi I’ve added to following code to a project I’m working on to allow VBA to update locked cells. **************************************** Private Sub Workbook_activate() Dim wSheet As Worksheet For Each wSheet In Worksheets wSheet.Protect UserInterFaceOnly:=True '====>Allow...
  9. ninja1980

    Solving Simultaneous Equations in VB

    Sorry, the second equation should read a/k*(1/Ng^2 – 1) = Omega(1/Nv – 1)
  10. ninja1980

    Solving Simultaneous Equations in VB

    Hi Another day, another problem. After all the helpful responses yesterday I thought I ask for some help on the following problem that has been bugging me for quite some time. I basically need to find the solution for the following simultaneous equations: Na = (ygo * Ng) + (1-ygo)Nv...
  11. ninja1980

    Speeding up Loops

    Thanks very much. I've come up with something similar but your coding is a bit shorter and more efficient. Thanks again
  12. ninja1980

    Speeding up Loops

    Doesn’t the solver link into Excel??? I’m trying to do this entirely in VB. I’ve written the code below. The only problem is I want the value of Nc used to calculate “Term” to use later on. In my code Nc will be altered in the final If statement. Any ideas? CODE...
  13. ninja1980

    Speeding up Loops

    Hi PHV, how do I go about using Solver.XLA???? Thanks
  14. ninja1980

    Speeding up Loops

    Also, ettienne, could you give me a starting point to translate this method into code Thanks

Part and Inventory Search

Back
Top