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 SkipVought 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: Delboy14
  • Order by date
  1. Delboy14

    Macro transfer spreadsheet, error

    Excel & Access 2003 I have set up a simple macro to import data from a spreadsheet, appending it to an existing table in my database. The macro uses action "TransferSpreadsheet" with arguments Transfer Type: Import Spreadsheet Type: Microsoft Excel 8-10 Table Name: CONTACT File Name: H:\RR.xls...
  2. Delboy14

    EXCEL Split Merged Cell, Duplicate Content

    thanks CMP, was just writing it quick, will add the count rows method, as I will be dowloading these files daily.
  3. Delboy14

    EXCEL Split Merged Cell, Duplicate Content

    Thanks Skip, I will have to do it a few times so I have decided to do it using VBA (I know this was not in the original query) Function Unmerge() Dim i As Integer Dim Legal_Entity As String Dim Portfolio_Owner As String i = 4 For i = 4 To 1441 If Cells(i, 3) <> "" Then Legal_Entity =...
  4. Delboy14

    EXCEL Split Merged Cell, Duplicate Content

    Skivought, I think the IF solution will only display the unmerged values with blanks? I think by propogate the cells, you mean select the bottom right hand corner of the cell to fill in the name for the unmerged cells below. my problem is I have thousands of rows and merged cells. Propogating...
  5. Delboy14

    EXCEL Split Merged Cell, Duplicate Content

    Using Excel 2003 I have a table with merged cells showing the owner of items. I would like to unmerge the cells to show the owner on each row next to the item with no merged cells. Is there any way of unmerging merged cells and adding owner name to each of the unmerged cells. I have to do this...
  6. Delboy14

    Updating Visio Org Charts from Excel Data

    sorry I did not find an answer
  7. Delboy14

    Updating Visio Org Charts from Excel Data

    Visio 2003, Excel 2003 I know how to Create an Org Chart using Excel Data, however I would like to maintain this link, so that I can update the excel spreadsheet and then refresh the Org Chart. I cant seem to find this option with out re-creating the chart, by importing the data, this means I...
  8. Delboy14

    oracle select and insert syntax

    ok it is now sorted, the problem was the sql, I had removed single quotes from the date char form field, when I did not know the database path connection was wrongs, thanks for your help though
  9. Delboy14

    oracle select and insert syntax

    sleipnir sorry, up to now their has been an error in my connection to the database, the path was wrong in my index. I can now see the error when inserting, it says. insert into TRAVEL_REQUEST values(request_id_sequence.nextval,2115704,'London', 'New York' ...
  10. Delboy14

    oracle select and insert syntax

    the code still falls at this stage, and the error happens at the execute stage however no error is displayed from OCI Error(), so I am not sure what to do? Any Ideas
  11. Delboy14

    OCI Execute Error

    I am having problems adding records to my database, the insert statement seems to work ok, but I have an error when the execute command is reached. does anyone know where my problem is? <?php //try first to connect to the database. if we can't then end $dbh =...
  12. Delboy14

    oracle select and insert syntax

    thankyou, I realise I should have been adding these error checks, when I add them I find the error appears after the execute statement, does that mean it cannot add this record to the database? if so why? <code> <?php //try first to connect to the database. if we can't then end $dbh =...
  13. Delboy14

    oracle select and insert syntax

    I have tried this but nothing is printed from print_r(),it seems the while loop is not entered, and even simple text within the while loop does not appear on screen. I think my problem is in my insert code or fetch code?
  14. Delboy14

    oracle select and insert syntax

    I have altered my code to now look like this: the first piece of code attempts to insert into the database and the second part to display what has been added, I cant see where my problem is, but nothing seems to come out of the table when I use my select command. <code> <?php $dbh =...
  15. Delboy14

    oracle select and insert syntax

    I have an oracle database, the format of it is: table travel_request ( request_id number(5) not null, dbdirid number(15) not null, origin varchar2(128) not null, destination varchar2(128) not null, depart_date date not null, return_date date, purpose...
  16. Delboy14

    checking for duplicate records within a table, from form

    In my form I am trying to add a new record, the code to add a record works correctly. I am trying to add a check which displays a message box, if the user atempts to add a record which already exists. I have attempted to do this using the code below, the code I have added (which does not work...
  17. Delboy14

    file modes

    great thanks
  18. Delboy14

    file modes

    I am trying to update a text file depending on a value entered in a form, the text file's format is Name ID Approval Derek Smith 1 Pending Gopi Chan 2 Approved The values retrieved from the form will be either Accepted or Rejected for the Approval field and the id eg 1. I...
  19. Delboy14

    Including .shtml &amp; Javascript code in php pages

    I dont know, I am quite new to php. This does work but I have been advised it sends a file to the server from another post, which said; &quot;include includes a file on the server. You shouldn't specify the full URL to it.&quot;
  20. Delboy14

    when I change #include virtual to php include my form stops working

    sorry this is the code, it kept adding a semi colon, but I have added code tags <code> <?php include (&quot;http://es.cib.db.com/organisation/policies/includes/topnav.shtml&quot;); ?> </code>

Part and Inventory Search

Back
Top