Using numbers to create a table where the value of the line increases automatically

Hello

I created a table (pictured below) to help calculate my self-employed income:

INDEX

DATE

HAVING RETURNED TO THE SELF-EMPLOYED

£

A1

I want to create an index / of reference for each line so that I can connect to receipts.

I like the index / reference to automatically increase i.e. A2, A3 etc when I create a new line by using the shortcut 'alt - cursor down' but to note has managed to find out what formula to use.

Any help would be great!

Thank you very much

Stophen.

You can try something like this:

= 'A' & rangee()

SG

Tags: iWork

Similar Questions

  • Is it possible to create a table where the month series is represented as columns?

    Anyone know if it is possible to create a table view where the columns contain dates?  I have not seen something like this in Foglight, so I think that it is not possible currently.  Here is an approximate example of what I mean:

    The 2011 monthly average of JVM heap utilization %

    Server Jan Feb Mar Apr May Jun Jul Aug Ms Oct Nov Dec
    WebSphereServer_1 67 87 45 65 67 78 56 78 88 45 67 77
    WebSphereServer_2 45 56 45 68 89 90 99 34 45 67 78 78
    WebSphereServer_3 67 78 56 34 35 57 7 68 99 78 45 56

    Yes, it is possible.

    You can see examples of that in the out-of-the-box reports / canned reports / group, including "physical host - CPU Utilization monthly summary" and "physical host - memory usage monthly summary.

    You can set this in a Row-Oriented table by specifying the column property 'Iterate Over'.

    You would typically set the value of the "Iterate Over" property to the result of the construction in the query "N consecutive time the beaches."

    Review the definition of "reports / canned reports/memory usage Table" for details.

    Kind regards

    Brian Wheeldon

  • How to create a table, where the visitor can navigate by selecting the column they want to see results for in alphabetical order?

    First of all, I would like to know the name of this type of table.

    ex.

    Name of the song. Artist | Album | Date | Quality | Etc.

    Select the one you want to see less to higher value, select again to see bigger less valuable.

    SortTable: make all your tables sortable

    or with jquery

    jQuery Table sorting | The Plugin stupid table by JoeQuery

  • need a script to create multiple tables as the other columns in tables

    I need script to create multiple tables as the other columns of tables respectively.

    lets consider I want to create tables from table1... table99 like tablex1... .tablex99 columns (without data) respectively (i.e table1 as tablex1, table99 as tablex99).
    declare
    
    cursor c is select object_name from all_objects where object_type='TABLE';
    
    begin
    
    for i in c loop
    
    execute immediate 'create table '||i.object_name||'_x as select * from '||i.object_name||' where 1=2';
    
    end loop;
    
    end;
    
    use can use this and put your user names accordingly.
    If you get any error please post the error.
    
  • Can we use Beta to create live applications on the Apple App Store?

    Hello

    Can we use Beta to create live applications on the Apple App Store?

    Here are the terms of use, you agree to during registration for the beta: https://beta.publish.adobe.com/resources/dps_beta_tou.pdf. Article 3 is the relevant section that answers your question.

    Neil

  • Using Framemaker 7.2. Create a table at the top of the first page

    When I try to create a table with four rows and two columns, it appears on the top of page 2, and not page 1 where I want. I can't find a way to anchor it at the top of the first page. What I am doing wrong?

    Dennis...

    Moreover, in FrameMaker 2015, there is also a table format 'catalogue' as you know from the catalog of paragraph and character style. This makes it very easy to assign table models to the tables (see here).

  • Mark from a table where the column value is a colon-delimited list

    Version: Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    Hello

    This is a new query of a query Frank helped me with: https://community.oracle.com/message/12506306#12506306

    Demand is all users to restrict the report based on a multiple selection on the front-end server (application APEX) filter.

    The filter returns that a colon-delimited list and the data in the table can be saved in a delimited by a colon list too. There may be 1 to n values (up to 4000 characters).

    I need a WHERE clause that will allow a match, if it exists, between the data in the column of the Table and the Mult-selection list filter.

    The abbreviated for this post query would be something like:

    SELECT slt_id, slt_item, slt_owner

    OF slt_dashboard

    WHERE slt_owner IN (colon delimited page list);

    The Create Table and Insert statements:

    CREATE TABLE slt_dashboard
    (
      dashboard_id  NUMBER,
      slt_id        VARCHAR2(10),
      slt_item      VARCHAR2(2500),
      slt_owner     VARCHAR2(4000),
      slt_type      VARCHAR2(25),
      slt_year      NUMBER,
      parent_id     NUMBER
    );
    
    --Insert slt_dashboard
    INSERT INTO slt_dashboard(dashboard_id,slt_id,slt_item,slt_owner,slt_type,slt_year,parent_id)
    VALUES (12,'1.1','Implement revenue enhancement initiatives','E15889:JPARISI:BDUR63','Business Commitment',2014,6);
    
    INSERT INTO slt_dashboard(dashboard_id,slt_id,slt_item,slt_owner,slt_type,slt_year,parent_id)
    VALUES (13,'1.2','Strengthen our Energy position','KVROMAN','Business Commitment',2014,6);
    
    
    

    I have a function to separate the list delimited by two points in a table for the IN clause, but because these values can be saved in a delimited list of Colon in the column of the Table, I have a problem, being able to analyze the data in the column, AND the filter data.

    The function is:

    CREATE OR REPLACE FUNCTION get_list( p_string IN VARCHAR2
                                        ,p_delimiter IN VARCHAR2 DEFAULT ':'
                                       )
        RETURN vc_array_1
        PIPELINED
    IS
        l_string VARCHAR2( 32000 );
        l_array wwv_flow_global.vc_arr2;
    BEGIN
        l_array     :=
            APEX_UTIL.string_to_table( p_string
                                      ,p_delimiter
                                     );
    
        FOR i IN l_array.FIRST .. l_array.LAST
        LOOP
            PIPE ROW ( TRIM( l_array( i ) ) );
        END LOOP;
    
        RETURN;
    END;
    
    
    

    The function called in the query in the form (it's just for reference in case someone wanted to know):

    SELECT ...
    FROM ...
    WHERE slt_owner IN (SELECT * FROM TABLE( get_list( :P115_SLT_OWNER ) ));
    

    But I can't use this approach because the data in the Table can be saved in a delimited list of Colon too.

    Desired output:

    If the Mult-Select list filter contains: E15889:JPARISI then

    1.1 implementation of the E15889 revenue improvement initiatives; JPARISI (it's a semicolon between the names)

    If the multiple-selection list filter contains: KVROMAN then

    1.2 strengthen our position of energy KVROMAN

    If the multiple-selection list filter contains: BDUR63:KVROMAN then

    1.1 implementation of the BDUR63 revenue improvement initiatives

    1.2 strengthen our position of energy KVROMAN

    Please let me know if something is not clear.

    Thank you

    Joe

    I went to approach the Table and the Page works perfectly.

    Thank you to everyone!

    Thank you

    Joe

  • Create temporary table in the procedure

    I have a procedure which can be called at any time by multiple users. So I cann't use table in there, because on each call, the table is truncated and inserted. How can I create a temporary table in the procedure?

    Temporary tables in Oracle are different from other RDBMS like SQL Server.

    In Oracle, you create a global temporary table ONCE as part of the design of your database.

    create a global temporary table MyTableName (... columns...) on commit preserve rows;

    You can then use this table in your code as you would any other table.

    The difference is that any data that you insert in this table are only available/visible so that the code runs in the session, and if delete you / truncate the table it only removes the data for this session.  In this way, several sessions we can table without interfering with each other.

    (Note: instead of "preserve" you can change this to "delete" If you want that deleted data automatically when a commit is issued in your session, otherwise the data will be automatically deleted at the end of the session)

  • How can I create a table of the "party" or code

    Hello

    I still have some problem of thought on my code and how I had to do. (Newbie here! )

    The question is that I want to create a member code of the 'Party' for 10 heroes or more with all the separate stats.

    I wonder if I should create a table that I send across or there is another solution, like a temporary file which stock upward and save.

    The table should look like this:

    LVL 1 of table: part of article

    LVL 2 of table: name, attack, defense, xp lvl of the character.

    Example: [["rodolf", 1300, 3, 4, 78], ['Tak', 1301, 4, 3, 79], ["mukmuk", 80, 103, 2, 3], etc...]

    I know that I can blow up when a character matrix or leave the party, but I think that's not a good solution for this. The party is a very active variable and can change many times. So I need your help to guide me! Please, I beg you!

    Please read my problem and try to help me!

    Use an object:

    var obj:Object = {};

    updateParty('rudolf',1300,3,4,78);

    function updateParty(nameS:String,_xp:int,_attack:int,_defense:int,_lvl:int):void {}

    obj [names] = {attack: _attack, xp:_xp, lvl:_lvl, defence: _defense};

    }

    function retrieveParty (names): object {}

    return items [names];

    }

    ///////////////

    so if you want to recover the mukmuk lvl, use:

    trace (retrieveParty('mukmuk'). LVL);

  • How to find the name of the table where the paricular column is common to all the tables...

    Hi all

    any help please...

    I have a lot of tables in the diagram

    Select * from tab; show all tables...

    Now, there is a single table called has columns as name like this, dept, empno, joindate, sal...
    now the description column in table present in so many other tables in the schema above...

    How can I know the names of tables where this 'Description' column shows.

    Note: I use the 10 g version and I do not have DBA privilege on the diagram...

    Thanks in advance
    ASP.

    Are you logged in as owner of these tables? Otherwise (and it seems that you're not), you have privileges on these table? If you do, use:

    SELECT  OWNER,
            TABLE_NAME
      FROM  ALL_TAB_COLUMNS
      WHERE COLUMN_NAME = 'DESIGNATION'
    / 
    

    If you don't have privileges, but you can choose from DBA_TAB_COLUMNS, use:

    SELECT  OWNER,
            TABLE_NAME
      FROM  DBA_TAB_COLUMNS
      WHERE COLUMN_NAME = 'DESIGNATION'
    / 
    

    Otherwise ask your DBA to run it.

    SY.

  • How could I avoid creating C$ table in the db (readonly) source?

    Hi all, I have a big problem here, hope you can help me :(

    the source DB: ORACLE, SQLSERVER2005
    target db: ORACLE
    For oracle data to oracle, I use 'LKM to Oracle (Oracle DBLINK)', 'IKM Oracle incremental update' and 'CKM Oracle. "
    Of data between SQL SERVER and oracle, I use 'LKM SQL for Oracle', 'IKM Oracle incremental update' and 'CKM Oracle. "

    Today, my boss told me that I should not create or alter any table in the source database, even if it was table C$ created by ODI.
    What can I do? Which KM in each progress (ELT) should I use to deal with this situation?

    Hi Jun,

    U cannot use DBLINK and datapump in this case. Try SQL for SQL or SQL for Oracle LKM.

    Thank you
    Guru

  • Select from the table where the last character of the string is numeric

    Hello
    I have a table of STREETS with a field called ADDRESS. I want to select all the records in streets where the last character in the address is a number.
    Select ADDRESS of STREETS where regexp_like (substr (address,?,?,), '[0-9]');
    --? means that I don't know what to put here!

    I don't know if substr is the best approach to do this, because I want only the last character and the records are of different lengths.

    Thank you!

    Hello

    If you want to use regular expressions:

    WHERE     REGEXP_LIKE ( address
                  , '[0-9]$'
                  )
    

    You can get the same results, no doubt more effectively, without regular expressions:

    WHERE     INSTR ( '0123456789'
               , SUBSTR (address, -1)
               )     > 0
    
  • Create a table with the old table and add the new column

    I want to create a table from old table old table, condition is new table contains a sid column which contains the id of the series.


    sname name sid
    AAA 1A
    BBB 2B
    CCC 3 C
    4 DDD D
    5 EEE E

    Use a sequence.

    SQL> create table t
      2  as
      3  select level no
      4    from dual
      5  connect by level <= 10
      6  /
    
    Table created.
    
    SQL> select * from t
      2  /
    
            NO
    ----------
             1
             2
             3
             4
             5
             6
             7
             8
             9
            10
    
    10 rows selected.
    
    SQL> create sequence my_seq
      2  /
    
    Sequence created.
    
    SQL> create table t1
      2  as
      3  select no, my_seq.nextval no1
      4    from t
      5  /
    
    Table created.
    
    SQL> select * from t1
      2  /
    
            NO        NO1
    ---------- ----------
             1          1
             2          2
             3          3
             4          4
             5          5
             6          6
             7          7
             8          8
             9          9
            10         10
    
    10 rows selected.
    

    Thank you
    Knani.

  • Create a table for the web app components

    Hi all, I want to create one to display a list of web app components with the headings at the top of the table and the list of results, then under. See the result here Focus apartments, Brisbane

    I have 2 paintings put up here on the page, with the titles and the other containing the results. So there is no surprise for it being 2 completely separate tables that they don't line up correctly with each other during the display of the results.

    If I insert lines in the webapp layout, he repeats to each item in the list, which we don't want.

    How can I get these headers and data to align properly? No doubt there is a better way than this attempt. Thank you

    Create the table with thead and tbody element on the page. In the tbody add your module tag web app. In the available list web app only include the row in the table (not an entire table).

  • SQL join on the two tables where the column as another column

    Hi all


    tried to get the results of a join between two tables where only one column is like another.

    Table1 (nameA) examples: black2, green1

    Table2 (Name) example: black2.location.uk.com, green1.location.uk.com

    so, for example, I want to match all those in table1 with black2 column in table2 that begins with black2 and so of suite, if you see what im trying to get to!

    My sql up to now:
    select * from  schema.table1 a
    join schema.table2 b 
    on a.nameA like concat('%', b.nameB, '%'); 
    but it errors:

    ORA-00909: invalid number of arguments
    00909 00000 - "invalid number of arguments.

    Any help or advice would be greatly appreciated, thank you!

    Or any of them should do...

    select * from  schema.table1 a
    join schema.table2 b on a.nameA like '%'||b.nameB||'%';
    

    or

    select * from  schema.table1 a
    join schema.table2 b on instr(b.nameB,a.nameA) > 0
    

Maybe you are looking for