URGENT:  Is it possible to auto-number superscripts?

Context: I am trying to put my qualitative data into some sort of order so it is easy to locate quoted text. I have decided to use a numbering similar to what is used in religious books (ex., Bible). I use a superscript at the beginning of each sentence within a specific section.
Question: Is it possible to auto-number text using superscripts?
Concern: My concern is that as I do this by hand, I am bound to miss the beginning of a sentence and then every sentence thereafter will have to be renumbered. (Of course, the reality is that I most likely will not do that but just give the number a letter after it.)

Hi Jay,
You can use the Item Id field of the SharePoint list which will get incremented by 1 whenever you add the new item.
you can refer the below threads for other options of auto increment id
http://social.technet.microsoft.com/Forums/sharepoint/en-US/134fd5f6-17ce-4044-a78e-e7a32b523190/creating-autoincrement-field-in-sharepoint-list?forum=sharepointgeneralprevious
http://social.technet.microsoft.com/Forums/sharepoint/en-US/39743bb3-872d-4788-96a8-2b9fb8813011/create-auto-increment-value-in-sharepoint-column?forum=sharepointgeneralprevious
My Blog- http://www.sharepoint-journey.com| Twitter
If a post answers your question, please click "Mark As Answer" on that post and "Vote as Helpful

Similar Messages

  • Auto number as a data type?

    Hello,
    Is it possible in Oracle to use an auto number (integer) to automatically give a number for a column such as ID whenever a record is created or inserted? This would be similar to MS Access.
    TIA.

    There has been some debate (both within NI and with customers) about whether or not the flattening/unflattening solution is actually desirable. After all, if NI made the shared variable support classes, to do the writing to the variable, the object would be flattened to a string and then unflattened when the variable is read. In other words, having the shared variable support classes does not actually remove any work that the program has to do, so having the shared variable do this behind the scenes is just syntactic sugar. The negatives crop up with the issues that Phillip raised -- suddenly the shared varible is reporting a number of errors that it did not support previously, whereas by separating the (un)flattening into a separate node, it is easier to tell where an error is arising -- was it a failure to read a shared variable or was it a failure to unflatten the data therein? By keeping the shared variable ignorant of such complex data types, it is easier to swap out the communication mechanism used -- shared variables might get support for LV classes, but TCP/IP prims might not, or whatever other communication protocol comes along in the future (i.e., the network stream primitives that are brand new in LabVIEW 2010 -- effectively queues that are usable over the network).
    Users may choose to create a custom string format for objects, one that can be unflattened by any system that uses the shared variable -- including CVI and MeasStudio. Having shared variables support classes directly does not get in the way of this, but consideration of exactly what private fields actually need to be exposed in that very global global variable might be encouraged if users are consciously aware of the serialization taking place.
    I'm not pro or con this feature at this point... this post is merely to document debate I've heard about any intermachine communications protocol handling LV classes directly.

  • How to add Auto-Number column

    I want my PK column to be an Auto-Number field? Preferably like a number(10) col that has a seed of 1 and increments by 1, no cryptic guid #.
    Also, how do I insert an explicit value into the Auto-Number field?
    e.g. - preserving the ID column value of 1:
    insert into mytable (ID, Name)
    values (1, 'Chris')
    Thanks in advance
    Chris

    You would have to use a sequence in combination with a before insert trigger.
    In that trigger you will get the next value from the sequence and insert it into the correct field.
    If you need the generated number in an other insert (e.g. parent-child tables), you can use the returning clause.
    Technicly it is possible to insert a explicit value (in the trigger you would check if there is a value given for that field), but it would be bad practice if it concerned an key field.
    greetings
    Freek D
    I want my PK column to be an Auto-Number field? Preferably like a number(10) col that has a seed of 1 and increments by 1, no cryptic guid #.
    Also, how do I insert an explicit value into the Auto-Number field?
    e.g. - preserving the ID column value of 1:
    insert into mytable (ID, Name)
    values (1, 'Chris')
    Thanks in advance
    Chris

  • Insert into table returning primary key (auto number) in resultset

    Hi,
    I'm connecting to Oracle 10g via JDBC (ojdbc14.jar).
    My SQL statement is as follows:
    INSERT into Student (studentName, phone, email, address) values ('Jason', '12345678', 'test', 'test');
    SELECT Student_studentId_SEQ.NEXTVAL FROM DUAL;
    Fyi -The Student table has a trigger to support the generation of a primary key (integer) based on a sequence when a new record is inserted.
    What the above will do (from the Java app point of view) is to create a Student record and automatically select the student ID so that the student ID can be accessed via the resultset in Java.
    I'm getting error "ORA-00911: invalid character". Can you please help?
    Regards,
    Jason
    Edited by: user10394130 on Oct 13, 2008 2:40 AM

    Yes, I'm referring to the studentId, which is generated via the Student table trigger on insert of a new record.
    I've now verified that the following SQL works and it is "printing" the correct studentId.
    DECLARE seqNbr_studentId NUMBER(12) := 0;
    BEGIN
    INSERT into Student (studentName, phone, email, address) values ('Jason', '12345678', 'test', 'test')
    RETURNING studentId INTO seqNbr_studentId;
    dbms_output.put_line(seqNbr_studentId);
    END;
    --> This prints the correct value of seqNbr_studentId that has been generated by the trigger. This is good.
    However, I would like the studentId to be in a resultset (so that I can access this via Java Resultset.getInt(1) ), for example:
    DECLARE seqNbr_studentId NUMBER(12) := 0;
    BEGIN
    INSERT into Student (studentName, phone, email, address) values ('Jason', '12345678', 'test', 'test')
    RETURNING studentId INTO seqNbr_studentId;
    SELECT seqNbr_studentId FROM DUMMYTABLE;
    END;
    Is this possible?
    What I'm trying to do is to achieve the effect in SQL Server where I can simply do an SQL command "SELECT @@IDENTITY" where it returns the auto number from the newly inserted record.
    Regards,
    Jason
    Edited by: user10394130 on Oct 13, 2008 2:08 AM
    Edited by: user10394130 on Oct 13, 2008 2:56 AM

  • Auto number generation in custom table

    Hi,
    Is it possible to auto generate number in custom table. My requirement is to generate the number once anyone makes entry in the table. I guess there is a way to put code in tables but I have no clue how that can be acheived. If anyone has such kind of experince please share with me.
    Regards
    Ria

    Hi Ria Sen,
    Please follow the steps as below,
    1. Use Select single Max Query to select the latest maximum number
    2. Check <variable> is initial or not.
    3.if variable is initial assign the number which will start from your number range.
    4.else increment the variable values by 1 and update the new range values.
    Ex: Select Single Max ( Field for Number) from <table>
               into <variable>.
    if <variable> is initial .
    <variable> = 'Starting number from your range'.
    else.
    <variable> = <variable> + 1.
    Please let me know if you have any issues.
    Regards,
    Gurunath Kumar D

  • Auto number by sequence and trigger - issue

    Hi,
    i need to insert auto number in one of the column of my table, and i tried like the following way..
    CREATE TABLE STOP_TRACKING
      ID                    NUMBER                           primary key,
      MSISDN                NUMBER                  NOT NULL,
      TIME_STAMP            DATE                    DEFAULT SYSDATE,
      STOP_TRACKING_RESULT  NUMBER,
      REQUEST_ID            VARCHAR2(60 BYTE)
    TABLESPACE SYSTEM
    PCTUSED    40
    PCTFREE    10
    INITRANS   1
    MAXTRANS   255
    STORAGE    (
                INITIAL          64K
                MINEXTENTS       1
                MAXEXTENTS       2147483645
                PCTINCREASE      0
                FREELISTS        1
                FREELIST GROUPS  1
                BUFFER_POOL      DEFAULT
    LOGGING
    NOCACHE
    NOPARALLEL;
    COMMENT ON COLUMN STOP_TRACKING.STOP_TRACKING_RESULT IS 'IF RESULT ID "0" - OK AND IF RESULT ID "1" - NOT OK';
    create sequence seq_autonumber;
    CREATE OR REPLACE TRIGGER trg_autonumber
    BEFORE INSERT ON STOP_TRACKING
    FOR EACH ROW
    WHEN (new.id IS NULL)
    BEGIN
      SELECT seq_autonumber.NEXTVAL
      INTO   :new.id
      FROM   STOP_TRACKING;
    END;
    /when i execute the create trigger sql in toad sql editor am getting a pop up saying
    >
    variable name:NEW
    Type: drop down list ...here i tried almost relevant data types, int,long,....
    Value:...here i entered 1
    and clicked ok...and got the error as
    ORA-01036: illegal variable name/number
    >
    what could be issue?
    Edited by: Aemunathan on Nov 22, 2009 2:55 PM

    I just copy pasted your code.
    Works just fine.
    I believe you issue is realed to TOAD rather than pl/sql.
    Would have loved to help you but i use pl/sql developer.
    However if possible send a screen shot.
    Cheers!!!
    Bhushan

  • Is there a way to auto number your headers?

    Hi guys
    So I'm working on my thesis in Pages now. Everything goes quite well, but I stumble upon 1 question. Is there a way to auto number my headers? I know Word has a feature like that, but I'd like to figure out if it's possible in Pages also.
    To picture my problem, I would like to achieve something like this:
    1. Header 1
    2. Header 1
    3. Header 1
    3.1 Header 2
    3.1.1 Header 3
    For example:
    1. Branding (header 1)
    1.1 Brand image (header 2)
    1.2 Brand experience (header 2)
    1.2.1 Retail (header 3)
    Thank you guys!
    Maxim

    Hi there
    I use the latest Pages version (that's 5.2 I think)
    Hmm, to bad there isn't an automatic way of doing it like in Word.
    Still, thank you for your reply man! :-)
    Cheers

  • How to file auto number in save for web ?

    Hi All,
    how to file auto number in save for web ?
    I have make an action script in Photoshop cs5 that
    change the image resolution and SaveForWeb...
    (but at this point user need to supply the file name)
    so, How to write the code/action such that when the
    action button is click the image will save into the file
    file2eMail_001,file2eMail_002,file2eMail_003,file2eMail_004
    or to any unused number ?
    thank for any help!

    You could also ask over in the Photoshop Scripting Forum, I’m pretty certain stuff like progressively numbered copies has been addressed there previously.

  • How do I create and header on the left and auto number pages on the top right? I can't rearrange my document by making page 10 page 5 and so forth

    I've just completed my school report however I seem to be having difficulty with creating a header. I've managed to create the header for all pages in my document by however I also need to use APA style and insert page number on the top right hand corner of each page. I've chosen to auto number them and clicked on INSERT --AuTO PAGE NUMBERS however if I need to make changes to the page numbers, each change i make repeats on every page. Please help.
    I also can't seem to rearrange my document. It's 10 pages long and i want to make page 10 page 1. I thought I could click on that page and drag it into page 1 position like in Keynote however it's not offering me that option. when i click on page 10 in my page thumbnails, all of my pages are highlighted yellow instead of that 1 particular page. what am I doing wrong? someone please help

    You can chose to make left and right headers different in:
    Inspector > Layout > Section
    To move material the best solution is always to copy and paste the content where you want it. You can move sections however so:
    click at end of page 9 > Menu > Insert > Section Break
    You will then have a separate yellow border around the page 10 thumbnail and can drag it to the beginning.
    Peter

  • Access of possibly undefined property number through a reference with static type...

    Hello everyone !
    I run into this problem today ... take a look on the code :
    import com.trick7.effects.TeraFire;
    for (var j:uint=0; j<10; j++) {
        var fire:TeraFire = new TeraFire();
        fire.x = j * 40 + 20;
        fire.y = 100;
        fire.number = j; //This line is causeing the problem
        addChild(fire);
        fire.buttonMode = true;
    TeraFire class creates fire particles. The compiler error is :
    Scene 1, Layer 'Layer 1', Frame 1, Line 7
    1119: Access of possibly undefined property number through a reference with static type com.trick7.effects:TeraFire.
    Anyone can help me to find a solution to this problem.
    I can do that ".number" with a movieclip but not in this case. What can I do ?

    I borrowed that class from the internet.
    I made the changes you suggested: imported flash.Display.MovieClip and also made the class extend MovieClip.
    The error is still throwing in compiler errors. I am not really good enough to edit this class because there are some functions I don't still understand very good. This is the class below:
    package com.trick7.effects{
        import flash.display.BitmapData;
        import flash.display.GradientType;
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.filters.DisplacementMapFilter;
        import flash.filters.DisplacementMapFilterMode;
        import flash.geom.Matrix;
        import flash.geom.Point;
        import flash.geom.Rectangle;
        public class TeraFire extends MovieClip{
            public var phaseRateX:Number;
            public var phaseRateY:Number;
            private var offsets:Array= [new Point(),new Point()];
            private var seed:Number = Math.random();
            private var fireW:Number;
            private var fireH:Number;
            //火の色
            //private var fireColorIn:uint;
            //private var fireColorOut:uint;
            private var ball:Sprite;
            private var gradientImage:BitmapData;
            private var displaceImage:BitmapData;
            private var focalPointRatio:Number = 0.6;
            private const margin:int = 10;
            private var rdm:Number;
            public function TeraFire(xPos:Number=0, yPos:Number=0, fireWidth:Number=30, fireHeight:Number=90, fireColorIn:uint = 0xFFCC00,fireColorOut:uint = 0xE22D09){
                fireW = fireWidth;
                fireH = fireHeight;
                phaseRateX = 0;
                phaseRateY = 5;
                var matrix:Matrix = new Matrix();
                matrix.createGradientBox(fireW,fireH,Math.PI/2,-fireW/2,-fireH*(focalPointRatio+1)/2);
                var colors:Array = [fireColorIn, fireColorOut, fireColorOut];
                var alphas:Array = [1,1,0];
                var ratios:Array = [30, 100, 220];
                var home:Sprite = new Sprite();
                ball = new Sprite();
                ball.graphics.beginGradientFill(GradientType.RADIAL,colors, alphas, ratios, matrix,"pad","rgb",focalPointRatio);
                ball.graphics.drawEllipse(-fireW/2,-fireH*(focalPointRatio+1)/2,fireW,fireH);
                ball.graphics.endFill();
                //余白確保用透明矩形
                ball.graphics.beginFill(0x000000,0);
                ball.graphics.drawRect(-fireW/2,0,fireW+margin,1);
                ball.graphics.endFill();
                addChild(home);
                home.addChild(ball);
                this.x = xPos;
                this.y = yPos;
                addEventListener(Event.ENTER_FRAME,loop);
                displaceImage = new BitmapData(fireW+margin,fireH,false,0xFFFFFFFF);
                var matrix2:Matrix = new Matrix();
                matrix2.createGradientBox(fireW+margin,fireH,Math.PI/2,0,0);
                var gradient_mc:Sprite = new Sprite;
                gradient_mc.graphics.beginGradientFill(GradientType.LINEAR,[0x666666,0x666666], [0,1], [120,220], matrix2);
                gradient_mc.graphics.drawRect(0,0,fireW+margin,fireH);//drawのターゲットなので生成位置にこだわる必要はない。
                gradient_mc.graphics.endFill();
                gradientImage = new BitmapData(fireW+margin,fireH,true,0x00FFFFFF);
                gradientImage.draw(gradient_mc);//gradient_mcを消す必要は?
                rdm = Math.floor(Math.random()*10);
            private function loop(e:Event):void{
                for(var i:int = 0; i < 2; ++i){
                    offsets[i].x += phaseRateX;
                    offsets[i].y += phaseRateY;
                displaceImage.perlinNoise(30+rdm, 60+rdm, 2, seed, false, false, 7, true, offsets);
                displaceImage.copyPixels(gradientImage,gradientImage.rect,new Point(),null, null, true);
                var dMap:DisplacementMapFilter = new DisplacementMapFilter(displaceImage, new Point(), 1, 1, 20, 10, DisplacementMapFilterMode.CLAMP);
                ball.filters = [dMap];
    I you can clarify a little bit further I would appreciate it a lot because I wasted some good time on this.

  • Auto Date field and Auto Number field

    I am fairly new to this,
    I have crated a form using the form wizard in Acrobat Pro 9.0 and I would like to make a field an Auto date field and another an Auto Numbering field. I have read a lot of the posts and there are a lot of recommendation to point the auto number to a database. This is fine but I do not know how to reference that field to an external database. PLEASE HELP!!!! Somebody GEEK me!!

    I am fairly new to this,
    I have crated a form using the form wizard in Acrobat Pro 9.0 and I would like to make a field an Auto date field and another an Auto Numbering field. I have read a lot of the posts and there are a lot of recommendation to point the auto number to a database. This is fine but I do not know how to reference that field to an external database. PLEASE HELP!!!! Somebody GEEK me!!

  • Form on a Table with Report - Auto Number

    Hi,
    Scenario:
    I want to create "Form on a Table with Report" that should allow my users to add records...
    Steps and issues
    I created a table in MS Access with a field called "TRACKING_NO" as type Auto Number and made it a primary key... I was planning to use it to link Report to Form
    When I uploaded the table to Oracle it changed the type to varchar2... can you please advice how to change it back to Auto number...?
    and will it work if my user add a record to the table (using APEX built in option to create a record)...?
    Thanks in advance

    Hi,
    this is what I would do.
    1. Upload the table from MS Access, lets call it TAB_A
    2. Using SQL-Workshop get the DDL (SQL statement) for this table
    3. Change any names and/or datatypes as required
    4. Create a new table with this DDL, lets call it TAB_O
    5. Copy the contents from TAB_A to TAB_O (e.g. INSERT INTO TAB_O (id, colx, coly) SELECT TO_NUMBER(tracking_no), col1, col2 FROM TAB_A;)
    6. Create a sequence which starts with the last PK + 1 of table TAB_A
    7. Add a trigger to TAB_O to use this sequence to populate it's PK
    By the way, working with APEX requires a solid understanding of Oracle SQL and PL/SQL, regardless of what anyone says, even Oracle.
    Regards Garry

  • Is it possible to auto merge contacts?

    Yesterday my Z10 restarted himself (I don't know why...) and today I see, that all my contacts are unmerged - I see for example 4 times the same person, because of Gmail, Facebook, Twitter and SIM...
    So is it possible to auto merge contacts?
    All time online

    My duplications aren't happening to the SIM card as some are. Mine is actually taking contacts from my primary personal account (an Office 365) to my work account (an older Exchange). Sometimes it keeps the doubles linked, which means on a practical level it isn't a big deal, but other times they detach themselves and then I am stuck with two different listings for the same person. So it is definitely a BB bug. 
    About a week ago I wiped my device clean and upgraded to the newest (at the time) leaked OS. I don't recommend ever using a leaked OS but I decided it was worth trying. Instead of taking one day for the duplicates to reappear it took almost a week, but it is still there.

  • How to create rownum or auto number

    Hi All,
    I got some problem in create rownum or auto number in following table condition.
    eg.
    MeasID PosID Desc
    ==== ====== ===
    P01 1 Abc
    P01 1 Cde
    P01 2 Abc
    P01 2 Efg
    P01 2 Xyz
    in select statement, I would like to make it look like:
    Num MeasID PosID Desc
    === ==== ====== ===
    1 P01 1 Abc
    2 P01 1 Cde
    1 P01 2 Abc
    2 P01 2 Efg
    3 P01 2 Xyz
    How can I create a running number and make like some short like group by PosID?

    Use analytic row_number:
    with t as (
               select 'P01' MeasID,'1' PosID,'Abc' Descr from dual union all
               select 'P01','1','Cde' from dual union all
               select 'P01','2','Abc' from dual union all
               select 'P01','2','Efg' from dual union all
               select 'P01','2','Xyz' from dual
    select  row_number() over(partition by MeasID,PosID order by Descr) num,
            MeasID,
            PosID,
            Descr
      from  t
      order by MeasID,
               PosID,
               Descr
           NUM MEA P DES
             1 P01 1 Abc
             2 P01 1 Cde
             1 P01 2 Abc
             2 P01 2 Efg
             3 P01 2 Xyz
    SQL> SY.

  • Tab character to the left of an auto-number

    I have InDesign CS4 documents with numbered lists in various places in the documents. I've been numbering them manually because I can't find a way to insert a tab character in front of an autonumber. The Bullets and Numbering settings dialog won't let me insert a tab at the beginning of an auto-number -- gives an error message. The reason for the tab in front of the number is so that the numbers will align right when there are 10 or more items in the list.

    Jay,
    You don't need to insert tabs, you set everything in the "Bullet and Number Position" section of the bullets -and-numbering tab. These values work for 10 points Minion:
    Alignment: Right
    Left indent: 6 pt
    First line indent 6 pt
    Tab position: 18 pt
    Peter

Maybe you are looking for

  • RequestTimeout error while attempting to connect to the Crystal Server

    Hi Guys, We use Crystal Server 2008, along with an automated java tool that updates the JNDI name for the database. Both the java tool and the Crystal Server reside on the same box, and communicate via TCP/IP. Recently, we had some space added to the

  • SAP Accounts payable

    Hi, i am new hired as SAP FI Accountant in MNC ,please i need all transactions paths concerning Accounts payable also if there are links to download pdf books concerning Accounts payable kind regards, khaled SAP FI  Accountant Moderator: Please, read

  • Premiere Pro CC for Mac

    I have a Mac Pro 3,1 with an AMD 5770  and 12 GB RAM, and running OSX 10.9.  The software crashes when attempting to load - I just downloaded the rial today.  Please help - I would like to do a monthly plan.

  • Airtunes Speakers Issue

    Hi all, I'm new to Mac only investing in my first a couple of weeks ago so sorry if this is basic. When I bought the mac I also bought an Airport Express and then recently I bought a time capsule which replace the airport express as the router. I dec

  • Silent track for alternate audio?

    HI, using DVDSP4, I'd like to have a silent audio track so a user can select that as a mute option. But how do i create a silent audio track? And does it have to be the same length as my video track?