How do I add numbers to a column so they work as outline in ascending order

I have prepared a Numbers spreadsheet, but realize I may need to insert new rows and want the far left column to automatically update the ascending numbers... but do not know how to make this happen.  Thank you

in the cells in the far left column use the formula:
=row()-1
select the cell you typed this in, copy
select the column paste.
when you add new rows this will update automatically so long as all non-header rows contain the same formula in a column

Similar Messages

  • How do i add numbers in a column?

    I bought numbers ap for ipad a few years ago and i am starting to use it
    i created a list of things to purchase in one column and the prices in a second colum
    colum c has numbers theu c13
    how do I add them?
    Thanks

    in what ever cell you want to have the sum of cells in column C enter "=sum(C)" without the double quotes

  • How can I add the number of columns/row starting with the build in "Text Report" example in the LabVIEW

    Hi All,
    I am wondering how can I add the numbers of row and column from the existing build-in "text report"
    VI ? If possible, would you mind showing me step-by-step because I am a new user and I am not familiar with the labview software.
    Thanks

    Hi,
    Easy text Report is for saving to a file. Do you mean you just want to add the totals of two arrays and write that? In that case I would just append the totals before writing to file.
    Jeff | LabVIEW Software Engineer

  • How do I add more than one column to a table using SQL?

    Hi
    I need to add 3 columns to a table using SQL
    the syntax
    "ALTER TABLE TEST ADD COLUMN newcol1 float";
    works fine - for adding one coumn only.
    For multiple columns I tried various permutations along the lines of
    "ALTER TABLE TEST ADD (COLUMN newcol01 float, COLUMN new2 float,COLUMN new3 float)";
    "ALTER TABLE TIPSTEST ADD COLUMN new1 float"
    "ALTER TABLE TIPSTEST ADD COLUMN new2 float"
    "ALTER TABLE TIPSTEST ADD COLUMN new3 float"
    etc., but this doesn't work.
    From a web search it sounds like SQL can only add one column at a time.
    I have a workaround : create intermediate temporary tables , copying data and adding
    one column at each stage. It seems a fairly awkward way of programming though.
    Am I missing something simple : is there a way to add multiple columns in one go?
    Thanks

    OK : solved an underlying problem with this one myself
    for the code
    String createString;
    createString =  "select COFFEES.* INTO NEWCOFFEES FROM COFFEES"; // example
              Statement stmt;
              try {
                   stmt = a_Globals.database1Connection.createStatement();
                          stmt.executeUpdate(createString);
                   stmt.close();
                   a_Globals.database1Connection.close();
              } catch(SQLException ex) {
                   System.err.println("SQLException: " + ex.getMessage());
              }                    commenting out the line:
    a_Globals.database1Connection.close();
    Allowed the subsequent SQL statement(s) to work OK. Looks like this was the cause of several
    difficulties, preventing me doing several SQL instructions in turn.
    Thanks for the responses.
    Mike2z

  • How can I add extra tick-box columns to the Evaluation report template?

    Is there a simple way to add additional tick-box columns to the evaluation report template? I want to have a column for every day of the week.

    Are you part of a class project? We've just had another query on this template.
    +Menu > View > Show Ruler/Invisibles+
    The "columns" are just boxes and text aligned with tabs.
    Select all of them and slide the tabs on the ruler across to tighten up the spacing.
    Add more tabs to the ruler by clicking on the ruler where you want them, then right clicking on the Tab markers to change them to the type you want.
    Copy and paste extra copies of the +tabs plus box+ in each line.
    Peter

  • How can i add Image or Picture Column to Matrix

    Hello Experts,
    I want to add Image or Picture column on my Add-on form matrix
    I am working on 8.81 PL5
    Please help out.
    Regards,
    Bhavank

    Hi Bhavank,
    Try This.....
          ocolumn = ocolumns.Add("CoGS", SAPbouiCOM.BoFormItemTypes.it_PICTURE)
            ocolumn.Editable = True
            ocolumn.Width = 60
            oitem.FromPane = 9
            oitem.ToPane = 9
            ocolumn.TitleObject.Caption = "COGSProfitCenter"
            ocolumn.DataBind.SetBound(True, "", "Folder")
            ouserdatasource = oOrderform.DataSources.UserDataSources.Item("Folder")
            omatrix.AddRow()
            omatrix.GetLineData(1)
            ouserdatasource.ValueEx = "c:\41224_128614427186464_128584050522835_146624_537710_s.jpg"
            omatrix.SetLineData(1)
    Thanks
    Shafi

  • How can I add encoding code before column link works?

    Hi, guys:
    I have a question that may be silly. I want to pass multiple parameters of a row in an interactive report to another page through column link by specifing URL. It works OK. However, I found some of the parameters such as address in the report including character "#" or ".", parameters behind these characters cannot be passed by APEX. I know I need to encode it, and I know how to encode it. But I do not know where to add PL/SQL code so whenever user click the column link, the address can be encoded at first then to pass to another page?
    Thanks in advance.
    Sam

    Always post code wrapped in tags<tt>\...\</tt> tags to preserve formatting and special characters.
    lxiscas wrote:
    I am using such a query in page 211, Offender_id is primary key, In the column of MAP, I add URL as follows to pass values to page 3006 to generate a google map (I am using APEX 4.1):
    f?p=&APP_ID.:3006:&SESSION.::&DEBUG.::P3006_H_OFFENDER_NAME,P3006_H_OFFENDER_ID,P3006_H_ADDRESS_LATITUDE,P3006_H_ADDRESS_LONGITUDE,P3006_H_PHYSICAL_LATITUDE,P3006_H_PHYSICAL_LONGITUDE,P3006_H_ADDRESS,P3006_H_PHYSICAL_ADDRESS:#Offender Name#,#Offender ID#,#Address Latitude#,#Address Longitude#,#Physical Latitude#,#Physical Longitude#,#Address#,#Physical Address#The problem is Address and Physical Address canot passed successfully.
    select distinct 'MAP','Detail',so.doc_number as "DOC Number", so.offender_id as "Offender ID", so.first_name||' '|| so.middle_name||' '||so.last_name as "Offender Name",
    so.date_of_birth as "Date of Birth",
    (select sc1.description from sor_code sc1 where sc1.code_id=so.race) as "Race",
    (select sc2.description from sor_code sc2 where sc2.code_id=so.sex) as "Sex",
    nvl2(sl.address1, sl.address1||' '||sl.address2 ||' '||sl.city ||' '||sl.county||' '||(select sc3.description from sor_code sc3 where sc3.code_id=sl.state)||' '||sl.zip, 'Unkown Address')  as "Address",
    nvl2(sl.physical_address1,sl.physical_address1||' '||sl.physical_city ||' '||sl.physical_county||' '||(select sc4.description from sor_code sc4 where sc4.code_id=sl.physical_state)||' '||sl.physical_zip, 'Unkown Address')  as "Physical Address",
    sl.status as "Status",
    sl.jurisdiction as "Jurisdiction",
    to_char(sl.ADDRESS_LATITUDE) as "Address Latitude",to_char(sl.address_longitude) as "Address Longitude",
    to_char(sl.physical_address_latitude) as "Physical Latitude",to_char(sl.physical_address_Longitude) as "Physical Longitude",
    decode(rox.habitual, 'Y', 'Habitual', '') as "Habitual",
    decode(rox.aggravated, 'Y', 'Aggravated', '') as "Aggravated",
    rox.status as "Registration Status",
    rox.registration_date as "Registration Date",
    rox.end_registration_date as "End Registration Date"
    from sor_location sl, sor_offender so, sor_code sc, registration_offender_xref rox, sor_last_locn_v sllv
    where rox.offender_id=so.offender_id
    and sllv.offender_id(+)=so.offender_id
    and sl.location_id(+)=sllv.location_id
    and rox.status not in ('Merged')
    and rox.reg_type_id=1
    and upper(rox.status)='ACTIVE'
    and nvl(rox.admin_validated, to_date(1,'J'))>=nvl(rox.entry_date, to_date(1,'J'))
    and ((so.first_name is not null and so.first_name like '%'||:P21_TF_FIRST_NAME||'%')
    or (:P21_TF_FIRST_NAME is null)
    and ((so.last_name is not null and so.last_name like '%'||:P21_TF_LAST_NAME||'%')
    or (:P21_TF_LAST_NAME is null))
    and ((sl.address1||sl.address2 is not null and sl.address1||sl.address2 like '%'||:P21_TF_ADDRESS||'%')
    or (:P21_TF_ADDRESS is null))
    and ((sl.city is not null and sl.city like '%'||:P21_TF_CITY||'%')
    or (:P21_TF_CITY is null))
    and ((sl.county is not null and sl.county =:P21_SL_COUNTY)
    or (:P21_SL_COUNTY is null))
    and (((select sc5.description from sor_code sc5 where sc5.code_id=sl.state and sc5.description=:P21_SL_STATE) is not null )
    or (:P21_SL_STATE is null))
    and ((sl.zip is not null and sl.zip =:P21_TF_ZIP_CODE)
    or (:P21_TF_ZIP_CODE is null))
    I'd suggest passing <tt>sor_offender.offender_id</tt> and <tt>sor_location.location_id</tt> to items on page 3006. Retrieve the derived values for <tt>P3006_H_OFFENDER_NAME, P3006_H_ADDRESS_LATITUDE, P3006_H_ADDRESS_LONGITUDE,P3006_H_PHYSICAL_LATITUDE, P3006_H_PHYSICAL_LONGITUDE, P3006_H_ADDRESS, P3006_H_PHYSICAL_ADDRESS</tt> using queries in a Before Header process.

  • How do I add numbers to contact groups I've created

    Ive created a list of sub-groups for my fairly extensive contact list, but I can't figure out how to add contacts to these subgroups without having to re-enter the contact info as a "new contact".   Is it possible to select from my "All Contacts" list those numbers I want included in a particular subgroup?

    Email the contact to yourself (share contact).
    In the contacts app, make sure you are in the proper group.
    Import the contact
    Delete the contact in the old group.
    Or:
    http://itunes.apple.com/us/app/speed-names-contacts-groups/id285124918?mt=8

  • How to print a numbers spreadsheet so column numbers show

    I'm writing this with zero experience so please be nice   I am trying to print a numbers spreadsheet and I want the Column numbers to show (1,2,3 down the side and A, B,C up top)  How can I do this?  Thanks.

    Hi John,
    Apple's design philosophy (keep it simple and non-technical on the surface) is pretty well known, so to me it's not that surprising when they extend that philosophy to Numbers: quite a bit of power under the hood but a deceptively simple interface.
    My experience shouldn't be an issue here. But since you brought it up, I am a long-time heavy user of spreadsheets, of Excel more than Numbers, but I find Numbers handy as well, and thought I'd point out my perspective, in response to your "are you kidding?" comment.
    In Numbers, column letters and row numbers are just a quick click or a tap away, quite handy for my needs, and I like the fact that they recede gracefully into the background when not needed.
    If unlike me you still do a lot of printing out to static reports (as opposed to sharing results dynamically online or on, say, a tablet) then you won't be as happy with Numbers as with many other spreadsheets.
    But, as I say, you might consider in your menu going to Numbers > Provide Numbers Feedback.
    SG

  • When working in a Table can you have it add numbers in a column?

    I know it can be done on a spreedsheet, but can it be done in a Table and if yes how?

    In a word, no.
    AppleWorks Tables handle only text.
    But instead of using a table, you can insert a spreadsheet frame and get all the functions of a spreadsheet.
    Regards,
    Barry

  • In numbers, can each column, including rows, work independently

    I made a table with two columns.  I want to add rows in column two, but if I do that, it adds the row to both columns.   Can this be changed?

    SJRiis wrote:
    Thanks, This seems like a serious flaw to me. I want to like Numbers, but keep finding reasons to go back to Excel.
    Why would you put data in different columns of the same row that don't have any relationship to each other? The purpose of a row is to create a record of related data. The Apple guys are sticklers about things like this. If that bothers you, reverting to Excel is your best option.
    Jerry

  • How can we add components to JPanel so that they can be resizeable

    Is it possible to add components to JPanel so that we can resize them or drag them.

    You could try searching the forums, but I'll save you the trouble. tjacobs has oft posted code which does what you want, both dragging and resizing.
    You can find an example here or here.

  • Downloaded latest firefox beta and it didnt work also removed all my files from old fire fox how can I retreave my old files and that they work

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/749175]<br>
    Thanks - c</blockquote><br>
    downloaded fire fox 4 beta once it downloaded it removed my old files as they will no open now how can I get my old fire fox back again, if i download the old version would it automaticy bring my old files and saved files back again I just downloaded the new version about 30 minutes ago please help

    See http://kb.mozillazine.org/Testing_pre-release_versions
    The Firefox 4.0 beta version should have installed in a separate program folder, so your old setup should still be there.<br />
    See:
    http://kb.mozillazine.org/Installation_directory
    If you do want to use the 4.0 beta version then you should create a new profile for that version.<br />
    See:
    http://kb.mozillazine.org/Profile_Manager
    http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    http://kb.mozillazine.org/Shortcut_to_a_specific_profile

  • [CSOM] How to use CSOM to add a Enterprise Keywords column to a content type

    Based on information given in following blogs, 
    http://sadomovalex.blogspot.com/2011/05/add-enterprise-keywords-field-into.html
    I wrote this code to Add an Enterprise Keywords column to a SharePoint content type. the  code runs fine... but when I go to the content type definition in the UI I don't see any column other than title.
    ContentTypeCreationInformation contentType = new ContentTypeCreationInformation();
    contentType.Name = "MyCT";
    contentType.Group = "MyGroup";
    contentType.ParentContentType = itemCt;
    ct = web.ContentTypes.Add(contentType);
    web.Update();
    c.ExecuteQuery();
    Field f1;
    Field f2;
    FieldCollection collFields = web.Fields;
    var siteColumns = c.LoadQuery(collFields);
    c.ExecuteQuery();
    foreach (var col in siteColumns) {
    if (col != null) {
    if (col.Title.Equals("TaxKeywordTaxHTField")) {
    f1 = col;
    if (col.Title.Equals("Tax Catch All Column")) {
    f2 = col;
    FieldLinkCreationInformation fieldLink = new FieldLinkCreationInformation();
    fieldLink.Field = f1;
    myContentType.FieldLinks.Add(fieldLink);
    f1.Update();
    FieldLinkCreationInformation fieldLink2 = new FieldLinkCreationInformation();
    fieldLink2.Field = f2;
    myContentType.FieldLinks.Add(fieldLink2);
    f2.Update();
    web.Update();
    c.ExecuteQuery();
    But when I go into SharePoint UI and try to see the content of my new content type. it only has a title column. there is no Enterprise Keyword column.
    How can I add a enterprise keyword column?
    val it: unit=()

    Hi,
    For this issue, I'm trying to involve someone familiar with this topic to further look at it.
    Thanks,
    Qiao
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Qiao Wei
    TechNet Community Support

  • How to add blank lines (in column) in SQLplus

    I get error when doing below insert, how do I add blank lines in column (via SQLplus)?
    insert into a values(1, '78 ABC house,
    Some Road
    London E34');
    Thanks

    Just set "SQLBLANKLINES" to ON:
    SQL> set sqlblanklines on
    SQL>
    SQL> insert into dept values (50, 'This department
      2
      3  has several
      4
      5  blank lines','This
      6
      7  Loc') ;
    1 row created.
    SQL> select * from dept where deptno = 50 ;
        DEPTNO DNAME                          LOC
            50 This department                This
               has several                    Loc
               blank lines
    1 row selected.
    SQL>

Maybe you are looking for