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!

Search results for query: *

  • Users: NicolaasH
  • Content: Threads
  • Order by date
  1. NicolaasH

    Pasting into a List

    Hi, I have a List (Listobject) in a worksheet, to which I wish to copy new data. Unfortunately it does not seem to be possible to paste the data when the number of rows in the copied data is larger than the number of rows in the existing list, or when trying to add a range of rows to the bottom...
  2. NicolaasH

    Indexing lists

    Hi, Is it possible to change the item number of a list (ListObjects)? I now have 12 lists on one excel worksheet, but since I did not make them in sequence the item numbers are in a random order compared to the sequence on the sheet. I have to compare these lists to other lists in other...
  3. NicolaasH

    New source data for pivot table

    Hi, I have a pivot table that is based on a list in a different workbook. Every month this workbook changes its name (new version) and the list changes in length. Since the source workbook changes, using a basic dynamic range is not an option. I therefore have to redefine the source data of...
  4. NicolaasH

    Selected row in a List

    Hi, I would like to ask the following: How do I detect in which row of a list (ListObject) a selected cell is? Purpose: I would like to enable the user to select a cell or row in a list and then they have the option of 2 buttons: Duplicate Row - the row gets copied and added at the bottom of...
  5. NicolaasH

    Keep cells hidden when using autofilter

    Hi, I have an Excel workbook in which I use an autofilter. Some of the rows in the list always have to remain hidden. However, when I hide a row, or give it a height of 0, these rows reappear again if I use the Autofilter (All) selection or Filter-> Show All I also use VBA code to show all...
  6. NicolaasH

    Type Library Reference (BTXPPanel)

    Hi, I am making an application that will be used by multiple users. I now have the difficulty that I am referring to a type library that is not standard included in Windows. On my own computer I have downloaded and installed BTXPPanel.dll so everything is fine, but when running the file on...
  7. NicolaasH

    Passing an array argument

    I was wondering how I can efficiently pass an array from one procedure to the other. VBA accepts the following: Public Sub Checksheet() Dim OmmissionArray(1 To 14, 1 To 8) As Integer '......some stuff to fill the array CompleteOmmissions OmmissionsArray:=OmmissionsArray End Sub Public Sub...
  8. NicolaasH

    Unprotect does not always work properly

    Hi, I am having some difficulty with unprotecting worksheets. I have a procedure that should unprotect all worksheets in the workbook (about 10 sheets), but sometimes not all worksheets are then unprotected, it either skips sheets, or stops at a certain sheet. I'm not sure what is different in...
  9. NicolaasH

    listobject row number

    Hi, I would like to run through a column of a list (ListObject) in my Excel sheet to check the value which is in it, in order to find out what the highest number is in the list. How can I point to a certain cell in a list and read its value? I now have something like this (unknown code marked...
  10. NicolaasH

    datevalue and languages

    Hi, Situation: I have build an elaborate spreadsheet which will be shared by several people. In this one can select a month (written out: January, February etc.)and a year from two validation lists. I have then used the DATEVALUE function to convert these parameters from the two cells into a...
  11. NicolaasH

    datevalue and languages

    Hi, Situation: I have build an elaborate spreadsheet which will be shared by several people. In this one can select a month (written out: January, February etc.)and a year from two validation lists. I have then used the DATEVALUE function to convert these parameters from the two cells into a...
  12. NicolaasH

    Calling a procedure in a different workbook (Excel)

    Hi, I am having trouble calling procedures in a different workbook. From a Sub in Workbook1, I want to run the procedure Public Sub Test() in Module1 of Workbook2. Workbook2 is already open. What should be the code for this? Thanks! Nicolaas

Part and Inventory Search

Back
Top