Load Excel question

hi all ! Im loading a excel document, Im using POI library, so far so good:
My question is: Is there a way to specify wich cell I want to load? Because I need to construct some objects and I need to specify wich values goes into it.
Here is my code so far
BeanDatosVentas t = new BeanDatosVentas();
    HSSFWorkbook workBook = new HSSFWorkbook(new FileInputStream(uploadedFile));
    HSSFSheet         sheet    = workBook.getSheetAt (0);
    Iterator<HSSFRow> rows     = sheet.rowIterator ();
   while (rows.hasNext ())
HSSFRow row =  rows.next ();
// display row number in the console.
System.out.println ("Row No.: " + row.getRowNum ());
// once get a row its time to iterate through cells.
Iterator<HSSFCell> cells = row.cellIterator();
if (row.getRowNum ()>0){
while (cells.hasNext ())
HSSFCell cell = cells.next ();
System.out.println ("Cell No.: " + cell.getCellNum ());
* Now we will get the cell type and display the values
* accordingly.
t = new BeanDatosClaims (
cell 1 goes here,
cell 2 goes here,
cell 3 goes here,
etc.  );Thanks!

Or does anyone can tell me how to resolve the big5 problem with using TEXT_IO.GET_LINE.
how to convert the code into utf8 or zht16big5 ?
I triedt but it doesn't work.
TEXT_IO.GET_LINE(in_file, linebuf);
linebuf :=convert(linebuf||' ','ZHT16BIG5','UTF8');
thank you.

Similar Messages

  • Firefox 4b7 does not complete «More Answers from-» action on Formspring.me userpages; previous Firefox (3.6) was able to load more questions and answers

    Even in safe mode, Firefox 4b7 is not able to complete «More Answers from…» action on Formspring.me userpages, it just displays «loading more questions…» for a seemingly endless amount of time. (Firefox 3.6 and any other browser, such as Safari, displays «loading more questions…» for a short period of time when AJAX works, then the questions and answers are actually loaded and displayed.) In order to reproduce, load Firefox 4b7 in Safe Mode, visit www.formspring.me/krylov and click on «More Answers from Konstantin Krylov» (the bottom link). You may try any other user, www.formspring.me/teotmin or www.formspring.me/anandaya for example.

    what a waste of money sending an engineer to "fix a fault" which does not exist.  Precisely.
    In my original BE post to which Tom so helpfully responded, I began:  It seems to me that DLM is an excellent concept with a highly flawed implementation, both technically and administratively.   I think that sending out an engineer to fix an obviously flawed profile is the main example of an adminastrative flaw.  I understand (I can't remember source, maybe Tom again) that they are sometimes relaxing the requirement for a visit before reset.
    Maybe the DLM system is too keen on stability vs speed.  This will keep complaints down from many people: most users won't notice speed too much as long as it is reasonable, but will be upset if their Skype calls and browsing are being interrupted too often.  
    However, it does lead to complaints from people who notice the drops after an incidence (as in your thread that has drawn lots of interest), or who only get 50 instead of 60.  The main technical flaw is that DLM can so easily be confused by drops from loss of power, too much modem recycling, etc, and then takes so long to recover.

  • Load Excel to Forms 6i

    Dear all,
    I have some question with using forms 6i
    I need to load excel data to form.
    I tried to saved excel as .csv and load inot form, but it had some problem with big5. I didn't know how to resolve it.
    I tried to use ole2 package , but it could not use in application server.
    Could any body help me ?
    my sample code as following :
    PROCEDURE ole2_test IS
    MyWorkbooksCollection OLE2.OBJ_TYPE;
    MYAPP ole2.obj_type;
    --workbooks ole2.obj_type;
    MYBOOK ole2.obj_type;
    worksheets ole2.obj_type;
    MySheetsCollection ole2.obj_type;
    MySheet ole2.obj_type;
    worksheet2 ole2.obj_type;
    mycell ole2.obj_type;
    args ole2.list_type;
    args1 ole2.list_type;
    args2 ole2.list_type;
    args3 ole2.list_type;
    val1 varchar2(50);
    val2 varchar2(50);
    val3 VARCHAR2(150);
    val4 number;
    cnt integer;
    i integer; --EXCEL ROW
    J INTEGER; --EXCEL COLUMN
    FETCH_VALUE VARCHAR2(20);
    begin
    fnd_message.set_string('test');
    fnd_message.show;
    --MyApp:=OLE2.Create_Obj('Excel.Application');
    --MyWorkbooksCollection:=OLE2.GET_OBJ_PROPERTY( MyApp, 'Workbooks' );
    fnd_message.set_string('000');
    fnd_message.show;
    -- Open an existing document
    args := CLIENT_OLE2.CREATE_ARGLIST; -- create argument list
    CLIENT_OLE2.ADD_ARG(args, '\var\temp\sunon_om_cust_tmp.xls' ); --- ur xls file
    fnd_message.set_string('000011');
    fnd_message.show;
    CLIENT_OLE2.set_property(myapp,'Visible','false');
    MyBook:=CLIENT_OLE2.Invoke_Obj( MyWorkbooksCollection,'open', args );
    MySheetsCollection:=CLIENT_OLE2.GET_OBJ_PROPERTY( MyBook,'Worksheets');
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    fnd_message.set_string('a');
    fnd_message.show;
    -- Loop throu all worksheets
    cnt:=CLIENT_OLE2.GET_NUM_PROPERTY( MySheetsCollection, 'Count' );
    args := CLIENT_OLE2.CREATE_ARGLIST;
    fnd_message.set_string('b');
    fnd_message.show;
    CLIENT_OLE2.ADD_ARG( args, 1 );
    mySheet := CLIENT_OLE2.GET_OBJ_PROPERTY( MySheetsCollection, 'Item', args);
    CLIENT_OLE2.DESTROY_ARGLIST( args);
    GO_BLOCK('SUNON_OM_CUST_TEMP1');
    FIRST_RECORD;
    FOR i IN 1..103 LOOP --- 103 is total no of records
    show_msg('1');
    ---for field1
    --pause;
    --Clear_message;
    args := CLIENT_OLE2.CREATE_ARGLIST; -- create argument list
    CLIENT_OLE2.ADD_ARG(args, i ); -- ROW
    CLIENT_OLE2.ADD_ARG(args, 1 ); -- COL
    MyCell:=CLIENT_OLE2.GET_OBJ_PROPERTY(MySheet,'Cells', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    -- You can use Value or Text property to read
    -- information from a cell
    val1:= CLIENT_OLE2.GET_CHAR_PROPERTY(MyCell, 'Text' ) ;
    IF NVL(val1,'xx') = 'xx' THEN
    GOTO EXIT_P;
    END IF;
    :SUNON_OM_CUST_TEMP1.CUSTOMER_NO := val1;
    SHOW_MSG(VAL1);
    ---- for field 2
    args1 := CLIENT_OLE2.CREATE_ARGLIST; -- create argument list
    CLIENT_OLE2.ADD_ARG(args1, i ); -- ROW
    CLIENT_OLE2.ADD_ARG(args1, 2 ); -- COL
    MyCell:=CLIENT_OLE2.GET_OBJ_PROPERTY(MySheet,'Cells', args1);
    CLIENT_OLE2.DESTROY_ARGLIST(args1);
    -- You can use Value or Text property to read
    -- information from a cell
    val2:= CLIENT_OLE2.GET_CHAR_PROPERTY(MyCell, 'Text' ) ;
    :SUNON_OM_CUST_TEMP1.CUSTOMER_NAME := val2;
    NEXT_RECORD;
    END LOOP;
    <<EXIT_P>>
    CLIENT_OLE2.RELEASE_OBJ(MyCell);
    CLIENT_OLE2.RELEASE_OBJ(mySheet);
    end;

    Or does anyone can tell me how to resolve the big5 problem with using TEXT_IO.GET_LINE.
    how to convert the code into utf8 or zht16big5 ?
    I triedt but it doesn't work.
    TEXT_IO.GET_LINE(in_file, linebuf);
    linebuf :=convert(linebuf||' ','ZHT16BIG5','UTF8');
    thank you.

  • How to load excel-csv file into oracle database

    Hi
    I wanted to load excel file with csv extension(named as trial.csv) into
    oracle database table(named as dept),I have given below my experiment here.
    I am getting the following error,how should I rectify this?
    For ID column I have defined as number(5) datatype, in my control file I have defined as interger external(5),where as in the Error log file why the datatype for ID column is comming as character?
    1)my oracle database table is
    SQL> desc dept;
    Name Null? Type
    ID NUMBER(5)
    DNAME CHAR(20)
    2)my data file is(trial.csv)
    ID     DNAME
    11     production
    22     purchase
    33     inspection
    3)my control file is(trial.ctl)
    LOAD DATA
    INFILE 'trial.csv'
    BADFILE 'trial.bad'
    DISCARDFILE 'trial.dsc'
    APPEND
    INTO TABLE dept
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'
    TRAILING NULLCOLS
    (ID POSITION(1:5) INTEGER EXTERNAL(5)      
    NULLIF ID=BLANKS,
    DNAME POSITION(6:25) CHAR
         NULLIF DNAME=BLANKS
    3)my syntax on cmd prompt is
    c:\>sqlldr scott/tiger@xxx control=trial.ctl direct=true;
    Load completed - logical record count 21.
    4)my log file error message is
    Column Name Position Len Term Encl Datatype
    ID           1:5 5 , O(") CHARACTER
    NULL if ID = BLANKS
    DNAME 6:25 20 , O(") CHARACTER
    NULL if DNAME = BLANKS
    Record 1: Rejected - Error on table DEPT, column ID.
    ORA-01722: invalid number
    Record 21: Rejected - Error on table DEPT, column ID.
    ORA-01722: invalid number
    Table DEPT:
    0 Rows successfully loaded.
    21 Rows not loaded due to data errors.
    0 Rows not loaded because all WHEN clauses were failed.
    0 Rows not loaded because all fields were null.
    Bind array size not used in direct path.
    Column array rows : 5000
    Stream buffer bytes: 256000
    Read buffer bytes: 1048576
    Total logical records skipped: 0
    Total logical records read: 21
    Total logical records rejected: 21
    Total logical records discarded: 0
    Total stream buffers loaded by SQL*Loader main thread: 0
    Total stream buffers loaded by SQL*Loader load thread: 0
    5)Result
    SQL> select * from dept;
    no rows selected
    by
    balamuralikrishnan.s

    Hi everyone!
    The following are the steps to load a excell sheet to oracle table.i tried to be as simple as possible.
    thanks
    Step # 1
    Prapare a data file (excel sheet) that would be uploaded to oracle table.
    "Save As" a excel sheet to ".csv" (comma seperated values) format.
    Then save as to " .dat " file.
    e.g datafile.bat
    1,Category Wise Consumption Summary,Expected Receipts Report
    2,Category Wise Receipts Summary,Forecast Detail Report
    3,Current Stock List Category Wise,Forecast rule listing
    4,Daily Production Report,Freight carrier listing
    5,Daily Transactions Report,Inventory Value Report
    Step # 2
    Prapare a control file that define the data file to be loaded ,columns seperation value,name and type of the table columns to which data is to be loaded.The control file extension should be " .ctl " !
    e.g i want to load the data into tasks table ,from the datafile.dat file and having controlfile.ctl control file.
    SQL> desc tasks;
    Name Null? Type
    TASK_ID NOT NULL NUMBER(14)
    TASK_NAME VARCHAR2(120)
    TASK_CODE VARCHAR2(120)
    : controlfile.ctl
    LOAD DATA
    INFILE 'e:\datafile.dat'
    INTO TABLE tasks
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
    (TASK_ID INTEGER EXTERNAL,
    TASK_NAME CHAR,
    TASK_CODE CHAR)
    The above is the structure for a control file.
    Step # 3
    the final step is to give the sqlldr command to execute the process.
    sqlldr userid=scott/tiger@abc control=e:\controlfile.ctl log=e:\logfile.log
    Message was edited by:
    user578762

  • When trying to download apps on my new iPad I keep getting prompted to update my security questions for my safety. When I choose this option it freezes and won't load the questions, however, when I hit not now it won't let me download. What do I do?

    When trying to download apps on my new iPad I keep getting prompted to update my security questions for my safety. When I choose this option it freezes and won't load the questions, however, when I hit not now it won't let me download. What do I do?

    Reboot your iPad and then see if you can set the security questions.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Step- by- Step on How to Load Excel data into Crystal Reports?

    Hi Friends,
                      Can anyone send me a Step- by- Step on How to Load Excel data into Crystal Reports? Pls help me. Thanks in Advance.
    Vijay

    It's also important to 'prep' the excel file prior to connecting to it.
    Give the data tab a meaningful name
    Make sure the column headers are unique and that every column has a header
    Delete any blank tabs
    If you have trouble with Excel changing the data type of a field (say, a social security number you want to be a string value rather than a number so you don't lose leading zero) an alternative would be to save the spreadsheet file as a CSV, create a schema.ini to specify the data types for each column (example below) and use the same steps to connect except instead of choosing Excel 8.0, scroll to the bottom and choose Text.  You have to make sure the CSV file is in the same folder as the schema.ini file that defines the columns.
    Schema.ini example:
    200912PUSD.csv
    ColNameHeader=True
    Format=CSVDelimited
    MaxScanRows=25
    CharacterSet=OEM
    Col1=SSN Char Width 9
    Col2=LAST_NM Char Width 25
    Col3=FIRST_NM Char Width 25
    Col4=DOB Date
    Col5=STDNT_ID Char Width 10
    Col6=SORTKEY Char Width 10
    Col7=SCHOOL_NM Char Width 30
    Col8=OTHER_ID Integer
    Col9=GRADE Char Width 2
    The filename in the first line needs to have the []  brackets around it, but I couldn't get it to display in this forum correctly.
    Edited by: Eric Petersen on Jan 27, 2010 9:40 AM

  • How i can load excel sheet into a table in oracle through pl/sql procedure

    Hi,
    How i can load excel sheet into a table in oracle through pl/sql procedure or a pl/sql block. Excel sheet is saved on my c or d drive on my machine. In xls format.

    Depending on how big your spreadsheet is and how frequently you want to do this you might want to contruct insert statements in excel, then run these. I have done this to load a few hundred rows for a one off test on dev.
    e.g. if you have values 1 and 'a' in you spread sheet and want to insert them in to table xxx col1 & 2:
    | /|   A   |   B   |    C
    |1 |col1   |col2   |
    |2 |      1|a      |="insert into xxx ("&$A$1&","&B1&") values ("&A2&",'"&B2&"');"then paste the contents of colum C
    insert into xxx (col1,col2) values (1,'a');into sqlplus or a script.

  • SO Load Balancing Question

    Hi all,
    I have a service object (SO1) which has been set to Load Balancing.
    This service object has an attribute which serves as a number allocator
    (NA1).
    This NA1 provides a unique number across the whole application for each of
    the record that require to store into DB.
    The problem is, will the NA1 get replicated if the SO1 is replicated?
    If yes, will NA1 crash?
    Regards,
    Martin Chan
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Senior Analyst/Programmer
    Dept of Education and Training
    Mobile : 0413-996-116
    Email: martin.chandet.nsw.edu.au
    Tel: 02-9942-9685

    Hi Serge,
    Could you prefix it with the PID of the load balanced process ?No I can't. At least not at the moment.
    When a service object is replicated, it is automatically replicated into adifferent partition...
    Thanks.
    An advice, make the NA1 shared. So if you get to do multithreaded accessto
    it, you won't screw up things.I am thinking it may be better off to create it as a service object on it's
    own.
    How is the number returned by the NA1 generated ?It gets generated by Forte's code.
    ... Try to make it so that the
    load balanced partitions don't need to access the database more than onein
    5 min. to get a new Seed Key. This would not need to PID.Thanks for your advise.
    Regards
    Martin Chan
    -----Original Message-----
    From: Serge Blais [mailto:Serge.BlaisSun.com]
    Sent: Tuesday, 3 April 2001 14:17
    To: Chan, Martin
    Subject: RE: (forte-users) SO Load Balancing Question
    Your right, they can generate the same number. How much control do you have
    over the ID being generated? Could you prefix it with the PID of the load
    balanced process ?
    Just a note: When a service object is replicated, it is automatically
    replicated into a different partition, possibly on the same machine or on a
    different one.
    An advice, make the NA1 shared. So if you get to do multithreaded access to
    it, you won't screw up things.
    How is the number returned by the NA1 generated ? If NA1 is using a stored
    procedure, or something like:
    Start TRX
    read number
    newnumber = number+5000
    write back newnumber
    End Trx
    Something like will be very safe. The Database Index Table is taking care
    of the critical section. Then you can be sure that each replicate can be
    independent (not hit into each other) for 5000 iterations. Depending on the
    frequency, you may want to up this number or lower this number. Too high it
    would make the key very high very soon with wholes in the sequence. Too low
    and you would have hit between the replicates. Try to make it so that the
    load balanced partitions don't need to access the database more than one in
    5 min. to get a new Seed Key. This would not need to PID.
    Serge
    At 01:59 PM 4/3/2001 +1000, you wrote:
    Hi Serge,
    The number return by the NA1 is used as a primary key for each of therecord
    that stores in the DB.
    The Number Allocator NA1 is required to access to DB to update an ID table
    which carry the next available sequence number. NA1 will only update this
    table for every 5000 records.
    For example, the initial value of the sequence is: 1
    The next update will change the value to 5001, next will be 10001 and soon.
    >
    The properties of this NA1 class at runtime
    Shared - Disallowed
    Distributed - Disallowed
    Transactional - Is Default
    Monitored - Disallowed
    Unfortunately, this attribute is not a handle but is instantiated by theSO1
    itself.
    I have been thinking, if SO1 is replicated within the same partition, and
    each replicate will carry its own NA1. NA1 and the replicate of NA1 may
    return a same number if their initial values of the sequence are the same.
    Correct?
    Regards
    Martin Chan
    -----Original Message-----
    From: Serge Blais [mailto:Serge.BlaisSun.com]
    Sent: Tuesday, 3 April 2001 13:11
    To: Chan, Martin; forte-userslists.xpedior.com
    Subject: Re: (forte-users) SO Load Balancing Question
    Let's see if I understand right.
    You have a service object that keep a handle to an object that either keep
    state information, or that generate state information. Now the thing to
    figure out is which is it. Let's assume that NA1 is a number generator,
    that does not need to be synchronized or that doesn't need to access any
    external resource. It would still work, depending on the algorythm you are
    using.
    Will they share the same NA1? It depends on the nature of NA1, but for sure
    NA1 would have to be an anchored object. An if multiple partitions would
    share the same object "only" for key generation, you would bring down your
    performance on key generation or key update (by adding one inter-process
    call).
    In short:
    1. Many scenarios can happen, you need to be clearer on your description.
    2. If you are sharing an object by load balanced partitions, this greatly
    reduce the gain of load balancing the partition.
    3. If NA1 is keeping state, any access to it would need to be controlled
    "shared".
    Have fun now...
    Serge
    At 12:30 PM 4/3/2001 +1000, Chan, Martin wrote:
    Hi all,
    I have a service object (SO1) which has been set to Load Balancing.
    This service object has an attribute which serves as a number allocator
    (NA1).
    This NA1 provides a unique number across the whole application for each
    of
    the record that require to store into DB.
    The problem is, will the NA1 get replicated if the SO1 is replicated?
    If yes, will NA1 crash?
    Regards,
    Martin Chan
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Senior Analyst/Programmer
    Dept of Education and Training
    Mobile : 0413-996-116
    Email: martin.chandet.nsw.edu.au
    Tel: 02-9942-9685
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.comSerge Blais
    Professional Services Engineer
    iPlanet Expertise Center
    Sun Professional Services
    Cell : (514) 234-4110
    Serge.BlaisSun.comSerge Blais
    Professional Services Engineer
    iPlanet Expertise Center
    Sun Professional Services
    Cell : (514) 234-4110
    Serge.BlaisSun.com

  • Load Excel file to infocube

    Hi,
    when I load Excel file to infoCube, I got the following error
    "Value 'All ' (hex. '41006C006C00 ') of characteristic ZATYPE contains invalid character"
    I check in the Excel file I didn't find string 'All',
    What should else I have to check ?
    Thx

    Hi,
    Flat file load
    1) The file shld be in correct format , which you are specifying in Infopackage.
    2) All Number /qty / amount etc shld not contain comma, i mean you need to format excel values as number by rght click select number.
    3) Your data source and file structure shld map.
    4) All the characteristics value which have no" lower case check ed in properties"  shld get only capital letters data.
    5) Special characters some time throw error ( which will be maintained in RSKC t-code)
    Hopefully these are the thing to follow,
    /message/8269057#8269057 [original link is broken]
    Edited by: SKDDON on Oct 15, 2009 3:16 PM

  • VSTS load test QUESTION : While recording the webPerformanceTest, is it is possible to clear / force to clear cachewithout stopping or closing the IE on recorder?

    VSTS load test QUESTION : While recording the webPerformanceTest, is it is possible to clear / force to clear cache without stopping or closing the IE on recorder?
    I am facing issue, while recording the webtest, our application first time loading any screen calls some requests and 2nd time when browsed the same information if it is available at cache then it will not
    call the requests again.
    How can i force the VSTS to clear cache while recording, so that i can record those requests which gets called at the first time.
    Regards
    SatishK

    Hi SatishK,
    Thanks for your reply.
    >>but my question was while recording (During recording using web test recorder) i want to clear cache.
    Based on your issue,
     I did some research about it,
    but I still find the official document about it. Generally, I know that if we want to clear the web performance test by the
    Cashe Control properties, so I think that it is not possible to clear the cashes when we are recording the web performance.
    If you still want to this feature for web performance test, I suggest you could submit this feature request:
    http://visualstudio.uservoice.com/forums/121579-visual-studio. The Visual Studio product team is listening to user voice there. You
    can send your idea there and people can vote. If you submit this suggestion, I hope you could post that link here, I will help you vote it.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Please verify my account. I have an excel question I'm working on today. Thank you.

    Please verify my account. I have an excel question I'm working on today. Thank you.

    Should happen automatically or you can also add your request in this thread.
    https://social.msdn.microsoft.com/Forums/en-US/fb60847b-188f-4075-93d0-3438e06d9047/verify-your-account-22?forum=reportabug
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • "Failed to load excel file" an Error Message while running TDS upgrade util

    Dear All,
    "Failed to load excel file" an Error Message while running TDS upgrade utility when clicking on CHECK DATA.
    Please help me out on this!!!!!!!!!!!!
    Thanks..........

    Not all data can be exported to Excel easily. Especially if the query result is huge or there are special characters in the query results. You may try the most updated version.
    Thanks,
    Gordon

  • Error loading Excels Files, BOExelAdapter, Dataservice, Linux

    Data service is runing in linux, the job server is runing, however can't load excels files, I got the next message:
    " Error preparing to read <Query>: <Following error was received while listening for client connections: 'etldwh_srv:4001'.
                                                                Stopped listening for new connections. (BODI-40)
                                                                Could not start (Adapter: 'BOExcelAdapter').>."
    how can verify if the Adapter for Excel is runing, how can restar the Adapter?
    Thanks for your help,

    have you configured BOExcelAdapter instance ? is your jobserver enabled for Adapter ?
    check the documentation to enable job server for managing the Adapter and a configure a instance of BOExcelAdapter, and start the Adapter instance

  • Excel question--appropriate here? If not, where?

    Is there an appropriate place in these fora to ask a simple Excel question?
    In any case, here it is:
    (iMac G5 1.6MHz, running 10.4.10)
    After some Tiger version update about a year ago, the tops of my Excel X worksheets default-opened and zoomed behind the status and formula bars. In other words, when I open a new worksheet or click on the green zoom button, the worksheet aligns itself so that the title bar and the column heads hide behind the status and formula bars. I recently upgraded to Excel 2004 hoping that the problem would fix itself. Nope.
    Sorry if this is posted in the wrong place...
    iMac G5; iBook G4; Mac Mini G4   Mac OS X (10.4.10)  

    I always had a hard time with MS help and found google groups to be quite good.
    http://groups.google.com/group/microsoft.public.mac.office.excel/topics?lnk=sg&h l=en
    This link is to Microsoft.public.mac.office.excel
    Good luck, Glynn
    I Have 2004 and have not had this problem.

  • SSIS Load Excel Data with out MS Office

    Hello All, 
    Requirement : Load Excel Data to SQL Server Table using SSIS 2012 with out using OPENROWSET(Ad Hoc Distributed Queries)
    SET UP : SQL SERVER 2012-64 Bit  and Access DataBase Engine 2010 -64 Bit  
    Problem :: No MS Office Install 
    Help on this  as how can this be achieved 
    When I use Excel as Source , I get error "MS Ace OLEDB 12.0" provider is not install on local Machine but if I take OLEDB Source and use OPENROWSET , I can see and Load data in SQL Table ..

    Hi Mushtaq308,
    According to your description, you want to read write Excel using SSIS without installing MS office on the target environment. In that case, missing of data access component on the machine stops working of SSIS package.
    Then following any one installation on the machine can solve this issue:
    2007 Office System Driver: Data Connectivity Components
    Microsoft Access Database Engine 2010 Redistributable 
    Besides, for the error message that “the 'microsoft.ace.oledb.12.0' provider is not registered on the local machine”, please refer to the following thread:
    https://social.msdn.microsoft.com/Forums/en-US/1d5c04c7-157f-4955-a14b-41d912d50a64/how-to-fix-error-the-microsoftaceoledb120-provider-is-not-registered-on-the-local-machine?forum=vstsdb
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for