How do i get the line/row numbers to print on my numbers document?

how do i get the row/line numbers to print on my numbers spreadsheet?

Neil,
You could make a Screen Shot with a cell selected so that the Row and Column tabs are active. That's a poor way to go about it though since the result will be a graphic with rather low resolution.
Better to make some labels yourself and add them to the Sheet before printing. You can use single row/column tables for this, or Text Boxes.
Jerry

Similar Messages

  • How can i get the failed row numbers in batch insertion?

    Afeter execution of batch insert operation into a table, i use OCIAttrGet() to get the error number of insertion, as expected, it returns the correct number. however, when i use OCIParamGet() to get an error handle and then to get the exact failed row numbers , OCIParamGet() returns -2 , means "INVALID_HANDLE". can anyboy tell me why ? how can i get the exact failed rows?
    the snapshot of my code :
    int errNum = 0;
    int nRet = 0;
    nRet = OCIAttrGet((dvoid *)m_pIIOdbc->m_pStmtAll,OCI_HTYPE_STMT,&errNum,
              0,OCI_ATTR_NUM_DML_ERRORS, m_pIIOdbc->m_pErrHandle);
    if (errNum)
         OCIError* pErrHndl;
         int* pRow_off = new int[errNum];
         for (int i = 0; i < errNum; i++)
         nRet = OCIParamGet(m_pIIOdbc->m_pErrHandle,
    OCI_HTYPE_ERROR, m_pIIOdbc->m_pErrHandle, &pErrHndl, i + 1);
         nRet = OCIAttrGet (pErrHndl, OCI_HTYPE_ERROR, &pRow_off, 0,
         OCI_ATTR_DML_ROW_OFFSET, m_pIIOdbc->m_pErrHandle);
              delete []pRow_off;

    now the code is :
    OCIEnv      *m_pEnvHandle;                    
    OCIError      *m_pErrHandle;                         
    OCIError     *m_pErrHandle2;                    
    OCIServer *m_pSrvHandle;                         
    OCISvcCtx *m_pSvcHandle;                         
    OCIStmt *m_pStmtExec;
    OCIStmt *m_pStmtAll;
    OCIError** m_pErrorHndl;     
    int* m_pRowOff; //the array that will contain the failed row numbers
    int     m_nArrayLength; //length of array in once batch operation
    int m_nErrNum; //error number
    int m_nSucCount; //successful record number
    //initialization
    //m_nArrayLength is a parameter passed in, so i can not tell the exact length of the array, dynamic space allocation is needed
    m_pErrorHndl = new OCIError*[m_nArrayLength];
    m_pRowOff = new int[m_nArrayLength];
    //execution
    OCIStmtExecute(
              m_pSvcHandle,
              m_pStmtAll,
              m_pErrHandle,
              (ub4)m_nArrayLength,
              (ub4)0, (OCISnapshot *)NULL, (OCISnapshot *)NULL,
              OCI_BATCH_ERRORS
    //get successful records number
    m_nSucCount = 0;
    OCIAttrGet((dvoid *)m_pStmtAll,OCI_HTYPE_STMT,&m_nSucCount,
              0,OCI_ATTR_ROW_COUNT, m_pErrHandle);
    //get error numbers
    m_nErrNum = 0;
    OCIAttrGet((dvoid *)m_pStmtAll,OCI_HTYPE_STMT,&m_nErrNum,
              0,OCI_ATTR_NUM_DML_ERRORS, m_pErrHandle2);
    //get failed row numbers into the array
    if (m_nErrNum)
              //get failed row numbers into the array
              for (int i = 0; i < m_nErrNum; i++)
                   //initiallize error handles               OCIHandleAlloc((dvoid*)m_pEnvHandle, (dvoid**)&m_pErrorHndl,
                        OCI_HTYPE_ERROR, (size_t)0, (dvoid**)0);
                   OCIParamGet(m_pErrHandle, OCI_HTYPE_ERROR, m_pErrHandle2, (void**)&m_pErrorHndl[i], i);
                   OCIAttrGet (m_pErrorHndl[i], OCI_HTYPE_ERROR, &m_pRowOff[i], 0,
                                            OCI_ATTR_DML_ROW_OFFSET, m_pErrHandle2);
    now, if batch insert is executed, eg, there are 10 records to be inserted, thus m_nArrayLength is set to be 10. There are 5 records of the 10 have exist in database, so some of insert operations will fail. After execution, m_nErrNum is 5, and i can get the failed row numbers.Everything seems go well.
    However, if batch updata is excuted, eg, 10 records to be updated, m_nArrayLength is set to be 10, and also there are 5 records of the 10 have exist in database. After execution, the OCIStmtExecute() returns 1, m_nErrNum got by
    OCIAttrGet((dvoid *)m_pStmtAll,OCI_HTYPE_STMT,&m_nErrNum,
              0,OCI_ATTR_NUM_DML_ERRORS, m_pErrHandle2)
    is 0, and m_nSucNum is 5. Why?? how can I get the rows that fail? i have to know which rows do not exist in database??

  • Only prints page 1 of 13....how do I get the other 12 pages to print???

    Is it me, is it my printer, or is it something else?   When I go to print, it only shows me page one and will only print page one... there are a total of 13 pages... how do I get the other 12 pages?

    Hi,
    Have you tried to print other papers to your printer? It happens to any files or specific file(s)?
    Hisami

  • How can I get the selected rows from two ALV grids at the same time?

    I have a program that uses two ALV grids in one dialog screen. I'm using the OO ALV model (SALV* classes).
    The user can select any number of rows from each grid. Then, when a toolbar pushbutton is pressed, I'd have to retrieve the selected rows from both grids and start some processing with these rows.
    It is no problem to assign event handlers to both grids, and use the CL_SALV_TABLE->GET_SELECTIONS and CL_SALV_SELECTIONS->GET_SELECTED_ROWS methods to find out which rows were marked by the user. Trouble is, this only works when I raise an event in each grid separately, for instance via an own function that I added to the grid's toolbar. So, I can only see the selected rows of the same grid where such an event was raised.
    If I try to do this in the PBO of the dialog screen (that contains the two grids), the result of CL_SALV_SELECTIONS->GET_SELECTED_ROWS will be empty, as the program does not recognize the marked entries in the grids. Also, an event for grid1 does not see the selected rows from grid2 either.
    As it is right now, I can have an own button in both grid's toolbar, select the rows, click on the extra button in each grid (this will tell me what entries were selected per grid). Then, I'd have to click on a third button (the one in the dialog screen's toolbar), and process the selected rows from both grids.
    How can I select the rows, then click on just one button, and process the marked entries from both grids?
    Is it somehow possible to raise an event belonging to each grid programmatically, so that then the corresponding CL_SALV_SELECTIONS->GET_SELECTED_ROWS will work?
    Thanks.

    Hello Tamas ,
    If I try to do this in the PBO of the dialog screen (that contains the two grids), the result of CL_SALV_SELECTIONS->GET_SELECTED_ROWS will be empty, as the program does not recognize the marked entries in the grids. Also, an event for grid1 does not see the selected rows from grid2 either.--->
    is it possible to  have a check box in each grid  & get the selected lines in PAI of the screen ?
    regards
    prabhu

  • How do I get the line number of the sales order and how do I save info?

    I am trying to create a form that is able to be called from a right click on the sales order matrix and will display some of the user defined fields associated with the line.
    I've managed to create a form and add a menu option to the right click but I'm now stuck because of the following:
    1. How to I know which line the user selected? I need the REAL Line Number from the RDR1 table because I need to use it on the data filter of the form.
    2. I hard coded a line to just to see if I can load a form and it appears to load and bind the data to the controls, but how do I save changes made? There are several text fields, combo boxes, and a picture control.

    Hi Coleman,
    1. The pVal returned form a menu event does no provide the LineId, but a pVal from a Item Event does. I suggest you use a DoubleClick or Control + Click on the Line to trigger an event that you can catch and use to launch your form.
    2. Please note that if the Sales Order line is closed you'll not be able to update the values. If it's not, then you need to instantiate a Sales Order document, get the correct document with the GetByKey method and update whatever fields you need.
                    Dim oSalesOrder As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oOrders)
                    If oSalesOrder.GetByKey(docentry) = True Then
                        oSalesOrder.Lines.SetCurrentLine(pVal.Row - 1)
                        oSalesOrder.Lines.UserFields.Fields.Item("U_MyUDF").Value = ""
                        oSalesOrder.Update()
                    End If
    Regards,
    Vítor Vieira

  • How can I get the last occurrence of a repeated item in Numbers

    Hi everyone, I'm hoping this question has a straightforward answer.
    I have a simple 2-column table (Table 1). Column A is a list of names. Column B is a list of dates where those names have had appointments. (Most names in Column A are repeated because they have had multiple appointments).
    I'd like to create an automated table based Table 1 that lists each name from Column A only once, with the last appointment that each person has had.
    Any ideas, I'd be grateful.
    Thanks!

    Hi Paul,
    Late to the party, as I was called to dinner shortly after starting on a solution and wasn't able to get back to it for a few hours.
    This was worked out in Numbers '09 (v2.3), but the formulas should work as well in Numbers 3. The solution requires the data on the Data table to be entered (or sorted) in ascending order of dates. Dulicate dates, though not included in the example, should not create an issue.
    The added column (Name index—column C) may be hidden. It is needed to mark the first occurrence of each name, and required only if you want the name list in column A of the summary table (Most recent appointment) filled automatically.
    Formulas:
    Data::C2, and filled down to the end of column C: =IF(COUNTIF($A$2:A2,A)=1,MAX($C$1:C1)+1,"")
    COUNTIF($A$2:A2,A) counts the number of occurences of the name in the same row as the formula from row 2 of column A to the row containing the formula. IF that count is 1, the number of the row is placed in the cell, otherwise the cell receives a null string ( "" ).
    Most recent appointment table:
    A2, and filled down to end of column A:
    =IF(ROW()-1>MAX(Data :: C),"",OFFSET(Data :: $A$1,MATCH(ROW()-1,Data :: $C,0)-1,0))
    If the row number minus 1 is greater than the number of distinct names in the index column, a null string is placed in the cell. Otherwise, the OFFSET function uses MATCH to determine the row in which to find the next name (in order of first appearance) and places that name in its cell.
    B2 and filled down: =IF(LEN(A)>0,LOOKUP(A,Data :: $A,Data :: $B),"")
    IF here uses LEN() to determine if there is data (a name) in column A. If so, then LOOKUP looks up the name in column A of the Data table and returns the date from the same row of column B. If there's no data (name) in column A, IF places a null string in the cell.
    This formula takes advantage of the fact that LOOKUP searches from the bottom of the column, and returns the result from the first match it finds.
    Regards,
    Barry

  • How do I get the line-in to record low frequencies?

    The iPhone with GarageBand is potentially one of the most powerful tools for mobile recording ever.  Unfortunately there are several tragic yet avoidable drawbacks that reduce it to nothing more than a mere toy.  1. You can't use the camera usb adapter to bring in loss-less digital stereo input.  2. Even if you could, you can't split the stereo into 2 seperate mono tracks.  And to take the cake...  3. You can't do much recording with the 3.5 jack's line-in because you get ABSOLUTELY NO LOWS!  This is due to the iPhones roll-off low frequency limiter filter, which i'm told since ios6 can possibly be disabled, though it's not in the Settings and i have yet to find an app that will do it in the background while running Garageband.  Sure, the Garageband app could do that, but then it would be a powerful incalculably valuable tool in the hands of everyone.  No lows means no drums, no bass, and vocals that sound like...well...like they were recorded via telephone.  Yes, it's painfully clear you recorded that demo on a phone, because when you play it back in your home or car it sounds like your listening to someone play it for you on the other end of a phone call.  There is no adjustment to compensate for the absence of low frequencies.  SOMEONE PLEASE TELL ME I AM WRONG and that you have a work-around or know of something I've missed.  How do you get lows into Garageband???

    Thanks for the info.  I am not wanting flat stereo nor digital input from the 3.5.  Only wanting flat mono.  But before I go the apogee route (which is a $150-200 solution, not to mention a solution that will add more devices to the connection and thus more opportunities for noise), I will probably just resort to purchasing an ipad (can get a mini for $299) .  My mixer has usb out, and I can go straight into the ipad digitally with the usb camera kit, albeit I still can't split 1 stereo channel into 2 mono channels.  But I digress:  my entire purpose for this post is that i would like to stay as mobile as possible by using the iphone, but with all the darn limitations imposed by no one other than Apple, what could be an easy way to record has been nullified.  What's frustrating is that all the components are there and I have them, all the hardware is more than capable; but in both cases (the 3.5 mono or the usb stereo) there is a software feature (or lack thereof) blocking me.
    Again if anyone knows of an app that will disable the software low-cut, please respond...

  • How do i get the lines off of my cracked phone?

    MY PHONE IS CRACKED BABLY AND IT HAS GOTTE WORSE AND I DONT WANT TO GET THE SCREEN REPLACE NOT NOW CAN ANYONE HELP ME FIND A WAY TO DO IT FREE OF PRICE FIRST MY DAD WAS GOING TO GET THE CREEN REPLACE BUT I WANT TO DO IT AN EASY WAY WHERE I CAN DO SOMETING MY SELF AND FIX IT MY SELF PLEASE HELP ME IM BROKE AND IM ONLY11 I HAVE NO  MONEY HELP

    jim is right, you should be at least 13 to post here according to the forum rules.  Also, an iPhone is a $600+ mini computer and a cracked screen is not a free or do-it-yourself fix. If your Dad is willing to pay to fix it then have him get it fixed. 

  • How can I get the correct Ship To (KNVP-KUNNR2) for a Sales Document?

    I am trying to generate a report that will (among other things) display the Ship To ID and Name for a given Sales Document.  I know the following information:
    VBAK-VBELN - Sales Document
    VBAK-VKORG - Sales Org
    VBAK-VTWEG - Distribution Channel
    VBAK-SPART - Division
    VBAK-KUNNR - Sold To Party
    I know that the table KNVP will return a list of Ship-To Customer numbers (KUNNR2) for a Sold-To Customer (VBAK-KUNNR) if I also filter by VKORG, VTWEG, and SPART (using SE16N).  What I don't know is which one of the returned values is being used in a particular Sales Document.  The customer in question has 29 Ship-To locations.  How do I find out which Partner Counter (KNVP-PARZA) the Sales Document uses? I don't know where that value would come from.  Once I can get the correct Ship-To Customer Number, I should be able to search the table KNA1 by WHERE KUNNR = KNVP-KUNNR2 and return KNA1-NAME1 for the Name of the Ship-To location.

    For a sales document?  Use VBPA with PARVW = 'WE'.  Also, use the ADRDA field to determine whether the address on the document has been manually changed.  In any case, you can use one of the many address management functions or just ADRC directly to get the name, address, etc., using the ADRNR field from VBPA or if the address is from the customer master, KNA1.

  • How can I get the Microsoft enhanced Point and Print compatibility driver installed on Win7 LC master?

    We recently migrated from a Windows Server 2003 to Windows Server 2012 print server. When recomposing a linked clone pool with the old 2003 server, drivers were taken care of for the printer when the user printed for the first time after desktop recompose. With 2012, any printer using the Point and Print driver doesn't seem to obtain the driver again from the 2012 server. All of our clients are running Windows 7 which means the Microsoft enhanced Point and Print compatibility driver is not installed in the OS natively.
    I apparently need to figure out a way to get this installed on the host image so it trickles down to snapshots when recomposing the linked clone pool but I haven't been able to dig much information on doing this. Does anyone out there have any insight on how to accomplish this? If I recompose a pool now for a user who is using a new Point and Print driver, they get the following message that is resolved by removing the printer from their account and re-adding it:
    "The 'Microsoft enhanced Point and Print compatibility driver' printer driver is not installed on this computer. Some printer properties will not be accessible unless you install the printer driver. Do you want to install the driver now?"
    I figured the easy solution would be to just install a printer using the Point and Print driver and then remove it...leaving the driver behind (unless it cleaned up after itself). The problem with this is in my testing, even after removing and re-adding a printer that set off installation of this Point and Print driver on the client, any other printer that was using it still required the remove/re-add process in order to work, else I got the same message. That tells me that the driver may be custom for each printer installed?
    Color me a little confused. I do NOT like the way that Server 2012 handles printers. I've come across a few other issues as well (such as duplex capabilities not being remember on the print server for a printer) that I never had with the 2003 server.
    Thanks!!

    I was able to get it to work using your instructions off of here and your other thread
    Thank you!
    Chris
    http://social.technet.microsoft.com/Forums/en-US/864553c2-c8ff-49d2-bd48-eb7b47381111/windows-2012-print-server-problem-with-xp-clients?prof=required

  • How do I get the line above the tasks, which allows you to edit the cell contents, without double clicking the cell?

    As title says.
    Normally in Gantt Chart View, above the tasks there's a line which displays the contents of the cell you have selected, and allows you to edit the contents without having to double click the cell.
    In my case, this line is not there, and it is slightly hindering my work.
    So, does anyone know where I should go to re-enable this line?
    Thanks a lot!

    Hi,
    Go to file, then options, then display and check the "entry bar" option.
    http://www.manageprojectsonsharepoint.com/blog/2012/04/02/microsoft-project-quick-tip-entry-bar/
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • How can I get the selected row's index of a Jlist wrapped with JScrollpane?

    the problem is that I can use getSelectedIndex() only if the JList is not wrapped in a JScrollPane.
    but in my program the JList IS wrapped in a JScrollPane.
    when I select one item of the jscrollpane I can't catch the event.
    please F1 me.
    Lior.

    What difference does it make if the list is inside a scroll pane or not? If you have a member varialbe that references the list you can call getSelectedIndex when ever you need.
        myList = new JList (...)
        someComponent.add (new JScrollPane (myList));
        //  Then later
        int sel = myList.getSelectedIndex ();And you can always be up on any selection chagnes in the list by supplying it with a ListSelecitonListener.

  • How do i get the daily manager to stop printing

    apparently when i set up my new printer i accidentally requested the "daily manager" to print.  But i don't want this to print. how do I stop it.

    Hi karenflo22, 
    I am sorry to hear you are having issues with the Daily Manager print app, but I will be happy to help you with this.  When you log into ePrint Center, does the Daily Manager app show up under the "My Print Apps" heading on the page?
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • How do I get the device context for a printer inwindows

    I need to know the device context for the printer that a user has
    selected via a print dialog box. This is the hDC property for the
    selected printer. The Windows common dialog control (which I'm
    assuming Forte is using) has a property for this but it doesn't seem to
    be a property that I can get from the PrintOptionsDesc that is returned
    via Forte's PrintDialog method. Is this possible? Any suggestions?
    Thanks for any and all help.
    Dennis Wetzel,
    C/Soft, Inc
    Carmel, IN

    I need to know the device context for the printer that a user has
    selected via a print dialog box. This is the hDC property for the
    selected printer. The Windows common dialog control (which I'm
    assuming Forte is using) has a property for this but it doesn't seem to
    be a property that I can get from the PrintOptionsDesc that is returned
    via Forte's PrintDialog method. Is this possible? Any suggestions?
    Thanks for any and all help.
    Dennis Wetzel,
    C/Soft, Inc
    Carmel, IN

  • How do I get the export value of a combox upon opening a document?

    I can't find a way to access the currently selected export value from a combobox upon opening a PDF document (without a keystroke event), so I'm using a very ugly trick (I have a function with a switch statement that returns a value that matches the export value, based on the current combo face value.
    Isn't there a way to retrieve the export value of a combo box upon opening a document?
    Thanks!
    Fred

    The following code segment is for the change event of a comboBox.
    Whenever a selection is made I want to populate a Form Field with the face value of the comboBox.
    This isn't working - and I can't determine why -
    it appears that I am not dereferencing the text properly - but this is my best effort based on my knowledge.
    Can anyone help with this ?
    Thanks
    var 
    combo1 = topmostSubform.Page1.DropDownList1.Text;
    var Deflt = 1;
    switch
    (combo1){
    case 
    "Education":
    CurrentValue1.rawValue
    = topmostSubform.Page1.DropDownList1.Text;
    break 
    case 
    "Demographics":
    CurrentValue1.rawValue
    = topmostSubform.Page1.DropDownList1.Text;
    break 
    case 
    "Licenses":
    CurrentValue1.rawValue
    = topmostSubform.Page1.DropDownList1.Text;
    break 
    case 
    "Certifications":
    CurrentValue1.rawValue
    = topmostSubform.Page1.DropDownList1.Text;
    break 
    case 
    "Business Information":
    CurrentValue1.rawValue
    = topmostSubform.Page1.DropDownList1.Text;
    break; 
    case
    "Disclosure Questions":
    CurrentValue1.rawValue
    = topmostSubform.Page1.DropDownList1.Text;
    break 
    default:
    Deflt = 0;}

Maybe you are looking for

  • VBAI Performanc​e

    Hi we are using VBAI 2012 full version and we wrote an application on our computer using a Basler GigE cam. To see how fast our application is running we use from time to time the benchmark function. But the results are confusing. Sometimes we get on

  • Mail_Receiver: Send Mail with attachment

    Hi everybody, I need some help. I want to send a mail with attachment. for this I have imported SAPs xsd for the mail adapter. I wonder how to map the target fields? The following causes five! attachments in SXMB_MONI and the adapter throws java.lang

  • Where is the value of report repository stored in the database?

    Hi all, One of our developers is trying to write a code that would send the output report (pdf)of a process through mail, typical work flow stuff.But the problem is that we are not supposed to hard code the value of report repositiry from where the r

  • System is unstable and keeps crashing after OS update...

    My computer became totally unstabel after the lastest Mac OS update - Mail app craching, Safari Crashing and now the whole system crashes. Below, the copy of the report I got after the latest crash: Anonymous UUID:       EC5E43C7-.......... Tue May 1

  • Picture quality in my apple tv

    due to lack of space I had to move all my pictures from my G4 to a iomega external drive, and after I did all image quality was lost while viewing pictures in my apple tv. Pictures and TV shows still have good imaging, is just the picture quality tha