Enqueue table?

Is there a way I can fill a queue on a table 1 d, instead of one?

Of course you can. You must set the data type of element in the table.

https://zone.NI.com/reference/en-XX/help/371361H-01/Glang/create_queue/

Tags: NI Software

Similar Questions

  • transmit CAN table

    Hello

    my ECU needs a special framework, which contains a lot of information about the vehicles. It is a cyclic structure, but each transmitting the frame contains another load. It is a kind of table, which is a table 2D with 5 x 8 bytes.

    The first show, the first line is sent. On the second, transmit the second row, etc. 6 transmission the first row is sent again, and so the table will be transmitted cyclical.

    How to do this with XNET?

    Find out about the type of Frame Out of session for XNET queued.  It allows you to define frameworks for out, allows that out of the database at a given speed.  When the queue is empty the transmission stops.  Make entries will be enqueue executives to go out one after the other.

  • Convert image in a table to a radial dimension

    Hey everybody,

    Thanks for taking the time to look at it.

    Here's the question, the code, I'm running works, but I think that it is possible to run faster, I'm not sure how to rewrite the algorithm to do this. I take a picture (seen on the page, the top left figure) symmetrical around the center point. What I'm trying to do, is to collapse all data in this image into a one-dimensional array, which is a radial representation of this image (screenshot, figure in the top right panel). The code that I currently use is illustrated in the figure on the bottom. Subtly which could lead to confusion is the multiple by a factor of 4 in the middle of the code, it was here when I started programming, and I guess that's a scale factor used to kind of spread on several elements of the array data in the table of dimensions a subsequence. As you can see code works effectively, but on average, this operation works on a 56 x 56 px image, so the code must run 3136 times and I don't think it is of the most effiencient way possible, the code takes about 1 ms to run for an image of px of 56 x 56 on our machine. Please let me know if you have any suggestions on how to speed things up, it's half the neck of the bottle for our analysis in real time!

    Thank you

    Joe

    jowparks wrote:

    Hi Bob,

    You have the right idea, which would give us a version of the radial representation. The problem is that if you only use this row of pixels, you take almost all your image data. The radial profile resulting will be extremely noisy compared to the case when you use all the image data to generate radial representation.

    Thanks for your help guys, I feel that there is a way to rewrite the algorithm (entirely) to make this thing run a lot faster than it already is, but I'm just at a loss on how to do it.

    Joe,

    Good point.  This is so how have your Pixels and them, eating too much.  Am I right that you know the coordinates of the center of the Image?  For more convenience, I'll call these details O (for "origin").  I'll also want representation radial distance R (in pixels).  Note that the coordinates of O do not necessarily need to be whole - he may fall "between the pixels.

    Here's what I'd do.  I guess it would be just as fast and precise as possible.  You basically want to use all the Pixels to come with an array of "average intensity" R + 1 (instead of using the example of the x-axis as I suggested).  What you want to do, is to get the average of all the distance pixels 1 from the origin, the average of all the distance of 2 Pixels, etc.  What a pain!

    We therefore reverse the problem.  Take all the Pixels and calculate their distance (rounded) o and include them in the calculation of the average.  Oooh, how?  What I would do, is to create a table of R + 1 of queues to contain the Pixel values.  When you look at Pixel-x-y, at the distance r from O, enqueue the Pixel value in the queue to index r (you know the Pixel if r > R, of course).

    When you have treated all the Pixels in R of O, you of R + 1 queues with intensities of Pixels at the distance r of o.  Just replace the lines with a picture of the averages of each queue.  The fast way to form the average of a queue is to clear the queue and retain its contents (in a table), then the table on average.  You now have used all the points in the Image, (b) take account of its distance from O and (c) calculated averages improved S/N and you have done quite effectively.

    This should be easy to code and fast to run (I'll bet a dime it will beat any other algorithm proposed in the next 24 hours...).

    Bob Schor

  • Need help to build the query/pl-sql block to get the query result and the name of column from DB table in the form of key-value pairs.

    Hi Experts,

    I have a DB table has columns of more than 50.

    I question this table, it should only return one line at any time. as sqldeveloper below image.

    here, I need to build block pl/sql-query, Discover the column in the table as a key and query result as values.

    Eg:     Key                         -  Value

    TASK_EVENT_ID - 1765

    EVENT_TYPE - ASR_UPDATE

    ... etc until all of the columns in my table.

    Experts please comment on that point, appreciate your help on this.

    Thank you

    -Vincent.

    Here is an approach using DBMS_SQL to iterate over the columns of key / value to assign... (Little code snipped for brevity)

    create or replace procedure (task_expired)

    v_store_id in full,

    v_task_action_id in full,

    v_job_id in full

    )

    as

    -[SNIP code...]

    v_sql VARCHAR2 (4000): = ' select * from my_table where PK = 123';  -Your SQL here!

    v_v_val VARCHAR2 (4000);

    v_n_val NUMBER;

    v_d_val DATE;

    v_ret NUMBER;

    c NUMBER;

    d NUMBER;

    col_cnt INTEGER.

    f BOOLEAN;

    rec_tab DBMS_SQL. DESC_TAB;

    col_num NUMBER;

    vAsString VARCHAR2 (4000);

    BEGIN

    -[SNIP code...]

    Message_properties. CORRELATION: = "EDF_EVENT";

    MSG: = SYS. AQ$ _JMS_BYTES_MESSAGE. Construct();

    Msg.set_string_property ('queueName', ' shipping/csi_cth');

    Msg.set_string_property ('MODE', 'CR8');

    c: = DBMS_SQL. OPEN_CURSOR;

    DBMS_SQL. PARSE (c, v_sql, DBMS_SQL. NATIVE);

    d: = DBMS_SQL. Execute (c);

    DBMS_SQL. DESCRIBE_COLUMNS (c, col_cnt, rec_tab);

    1.col_cnt J

    LOOP

    CASE rec_tab (j) .col_type

    WHEN 2 THEN

    DBMS_SQL. DEFINE_COLUMN (c, j, v_n_val);      -Number

    WHEN 12 CAN

    DBMS_SQL. DEFINE_COLUMN (c, j, v_d_val);      -Date

    ON THE OTHER

    DBMS_SQL. DEFINE_COLUMN (c, j, v_v_val, 2000);   -Else treat as varchar2

    END CASE;

    END LOOP;

    LOOP

    v_ret: = DBMS_SQL. FETCH_ROWS (c);

    WHEN OUTPUT v_ret = 0;

    1.col_cnt J

    LOOP

    -Fetch each column to the correct data type based on coltype

    CASE rec_tab (j) .col_type

    WHEN 2 THEN

    DBMS_SQL. COLUMN_VALUE (c, j, v_n_val);

    vAsString: = to_char (v_n_val);

    WHEN 12 CAN

    DBMS_SQL. COLUMN_VALUE (c, j, v_d_val);

    vAsString: = to_char (v_d_val, ' DD/MM/YYYY HH24:MI:SS');

    ON THE OTHER

    DBMS_SQL. COLUMN_VALUE (c, j, v_v_val);

    vAsString: = v_v_val;

    END CASE;

    Msg.set_string_property (rec_tab (j) .col_name, vAsString);

    END LOOP;

    END LOOP;

    DBMS_SQL. CLOSE_CURSOR (c);

    DBMS_AQ. ENQUEUE (queue_name-online 'cbus.aqjms_common',

    Enqueue_options => Enqueue_options,

    Message_properties => Message_properties,

    Payload-online msg,

    Msgid => Message_handle);

    dbms_output.put_line ('00 Msgid =' |) Message_handle);

    dbms_output.put_line('===Done=');

    -[SNIP code...]

    END;

    /

  • Application of segment SS Enqueue and fate on 8.1.7.4 after attempting to drop the temp tablespace

    We have a case opened with the support of the Oracle, but I thought I'd throw it out there if it's ok.

    We have a 8.1.7.4 database running on HP - UX 11.11 PA-Risc and it looks like any session that wants to use a temp space is hung a SS enqueue or in some cases is waiting on a waiting "sort request of the segment.

    Saturday, we tried to move all users to a new temporary tablespace and drop the old one but the drop suspended and we control-C out of it.  We put the users to the original temp.  Note that both the old and the new temporary tablespaces are managed locally.

    Before trying to leave falling the old tablespace temp that we killed the existing sessions, including one who had worked for two weeks and has been hooked on SMON.

    Query v$ fast_start_transactions and x$ ktuxe indicate that SMON is back any large transaction.

    In addition, SMON seems to run this query always:

    SELECT file #, block #, LENGTH

    The UET $

    WHERE the ts # =: 1 AND segfile # =: 2 AND segblock # =: 3 AND ext # =: 4

    Here are the locks held by SMON for what it's worth:

    ADDR KADDR SID TY ID1 ID2 LMODE CTIME BLOCK REQUEST
    ---------------- ---------------- ---------- -- ---------- ---------- ---------- ---------- ---------- ----------
    C000000028C43CD8 C000000028C43CF8 74 16 4 0 59610 TT 8 0
    C000000028C43C68 C000000028C43C88 TS 74-666633304 8 6 0 0 59650
    C000000028C1CB38 C000000028C1CB58 8 ST 0 0 6 0 13 0

    ST, space management Transaction
    TS, temporary Segment (also TableSpace)
    TT, temporary Table

    Same database has a recovery scenario about a month or to go back due to some deleted data files.  Also, during the holidays, we had to rebuild a global index huge and increased our tablespace temp to get it, which is why we strive to reduce now create a smaller.  In addition, creating index was still holding in the tablespace existing managed dictionary so we ended up move the index to a managed locally.  Also, UET$ has about 33,000,000 lines and most of the data is in the dictionary managed tablespaces.  Dba_free_space queries typically take 30 minutes to return - that is, we know it is messed up and has been so for a long time.

    Pleasure for us.  If anyone has an idea that would be great.

    -Bobby

    Tablespace name I really used corresponded to ts #= 74 in v$ tablespace.

    We plan to rebuild the other indexes in this space in a new locally managed tablespace and then drop the tablespace existing managed dictionary.  My only question is whether corruption will drop the tablespace to fail.

    Hi Bobby,.

    I'm not sure of your current situation hope now, that's better.

    I couldn't find the time to reply back yesterday. Looking at the huge amounts of temporary segments in your tablespace (74), just made me think if you or Support of Oracle were you made aware of an event DROP_SEGMENTS which is an event of users can invoke to clear temporary segments. It deletes the temporary segments such as the SMON in the background. This event has the advantage of not having the CPU consumed by SMON.

    47400.1 Note : EVENT: DROP_SEGMENTS - forcing cleanup of TEMPORARY segments

    There is also a method to the dictionary (changes) patch (not recommended if not). You can enlist the help of Oracle Support

    The method is to identify the segment (which you already have) and update the segment_type from temporary to 999.

    388619.1 Note: last resort when SMON takes 100% of CPU

    Kind regards

    Suntrupth

  • Use the same table queue send two different messages?

    Hello

    We have a reconciliation and an outgoing queue in our database!

    Now, we need to create another message content to send to IBM MQ series, so it's just an outgoing messages (no incoming message!)

    To the exsisting two queues, we have the gateway messages in place!

    I was wondering if I can use the same outgoing queue table and infrastructure Message gateway to send another message charge (contect) to the IBM MQ.

    Don't you think it's possible?

    More info made me know!

    Thanks a lot for your help!


    Hello Louis,.

    first of all I didn't detect something strange or even incorrect - perfect!

    Your questions:

    > 1. have I defind is correct? "multiple_consumers => TRUE);"

    Yes, that's correct. We must define this order to use MGW.

    > 2. I failed: gv_mq_inbound_log_queue: = 'ORACLE.002 ';     part because I have not all incoming messages to oracle, I just sent messages in my case! > Is this correct?

    Yes, that's also OK. Since you're carrying data from AQ to MQ in an outgoing queue. Incoming queue would be

    the other way around. You have configured your MQ as a remote queue (sys.mgw_property ('MQ_openOptions', 16')).

    You wishes to clarify this yet once with your MQ management group if this is correct. You may not know at this stage.

    The alternative would be a local queue (value = 2066).

    You don't show the part for the queue. This should be something like:

    BEGIN

    v_message_text: = p_message_text. GETCLOBVAL().    -using the XMLTYPE as payload type

    v_text_body: = SYS. MGW_TEXT_VALUE_T (NULL, v_message_text);

    v_payload: = SYS. MGW_BASIC_MSG_T (v_header, v_text_body, NULL);

    DBMS_AQ. ENQUEUE (queue_name-online p_queue_name,

    enqueue_options-online enqueue_options,

    message_properties-online message_properties,

    payload-online v_payload,

    -Online v_msgid msgid);

    > 3. The last of them, do you think I'll reach my goal with all these codes? Is that what you think may be missing or... ?

    Yes, you will reach your goal using this code. Try it and tell me what happened.

    Kind regards

    WoG

  • flow of Installer for tables with source schemas and destination is different

    How to set up courses of water for tables with source schemas and destination is different? But the structure of the table is the same.

    Please paste a small example too.

    Thank you
    Bala

    Hello

    I have a concrete example of this issue, I tested in my environment. Please follow the steps below to install this on your databases.

    My global_name to database source is: REP102A. WORLD
    My global_name to database target is: REP102B. WORLD

    Source table: ORDERS. ORDER_ENTRY
    Target Table: MERCHANT NAVY. ORDER_ENTRY

    Replication will happen as follows:
         
    ORDERS. ORDER_ENTRY (REP102A)-> SHIPPING. ORDER_ENTRY (REP102B)

    Needs to follow the steps below as the one proposed at each site. You may need to make the changes required for your environment.

    SCRIPT:
    =======

    * 1. Remove the configuration of the flow of SOURCE and TARGET sites: *.

    CONNECT / as SYSDBA
    RUN DBMS_STREAMS_ADM. REMOVE_STREAMS_CONFIGURATION;
    DROP USER CASCADE STRMADMIN;

    * 2. Installation STRMADMIN user and streams queued on the Source database: *.

    CONNECT / as sysdba
    Strmadmin CREATE USER IDENTIFIED BY strmadmin;
    GRANT dba, connect, resource, aq_administrator_role to strmadmin;
    ALTER SYSTEM SET aq_tm_processes = 1;
    BEGIN
    DBMS_STREAMS_AUTH. () GRANT_ADMIN_PRIVILEGE
    dealer-online "strmadmin."
    grant_privileges => TRUE);
    END;
    /

    CONNECT strmadmin/strmadmin
    BEGIN
    DBMS_STREAMS_ADM. () SET_UP_QUEUE
    queue_table-online "streams_queue_table."
    queue_name-online "streams_capture_queue."
    queue_user-online "strmadmin");
    END;
    /

    * 3. Installation STRMADMIN user and streams queued to the database target: *.

    CONNECT / as sysdba
    Strmadmin CREATE USER IDENTIFIED BY strmadmin;
    GRANT dba, connect, resource, aq_administrator_role to strmadmin;
    ALTER SYSTEM SET aq_tm_processes = 1;
    BEGIN
    DBMS_STREAMS_AUTH. () GRANT_ADMIN_PRIVILEGE
    dealer-online "strmadmin."
    grant_privileges => TRUE);
    END;
    /

    CONNECT strmadmin/strmadmin
    BEGIN
    DBMS_STREAMS_ADM. () SET_UP_QUEUE
    queue_table-online "streams_queue_table."
    queue_name-online "streams_apply_queue."
    queue_user-online "strmadmin");
    END;
    /

    * 4. Create ORDERS. ORDER_ENTRY Table on the Source database: *.

    CREATE USER controls IDENTIFIED BY;
    GRANT connect, resource TO arrested;
    CONNECT orders/orders

    CREATE THE ORDERS TABLE. ORDER_ENTRY
    (
    order_id number (8) primary key,.
    ORDER_ITEM varchar2 (30),
    ship_no number (8)
    );

    * 5. Create shipping. Target ORDER_ENTRY Table on the database: *.

    CREATE USER IDENTIFIED BY expedition expedition;
    GRANT connect, navigation resources;
    CONNECT shipping/delivery

    CREATE TABLE EXPEDITION TO FRANCE. ORDER_ENTRY
    (
    order_id number (8) primary key,.
    ORDER_ITEM varchar2 (30),
    ship_no number (8)
    );

    * 6. On the target, add the rules to apply and create a dblink from destination to source: *.

    CONNECT strmadmin/strmadmin
    SET SERVEROUTPUT ON
    DECLARE
    v_dml_rule VARCHAR2 (80);
    v_ddl_rule VARCHAR2 (80);
    BEGIN
    DBMS_STREAMS_ADM. () ADD_TABLE_RULES
    table-name => ' EXPEDITION. ORDER_ENTRY',.
    streams_type-online "apply."
    streams_name-online "streams_apply."
    queue_name-online "strmadmin.streams_apply_queue."
    include_dml to-online true.
    include_ddl-online fake,
    include_tagged_lcr-online fake,
    source_database => ' REP102A. WORLD ',.
    dml_rule_name-online v_dml_rule,
    ddl_rule_name-online v_ddl_rule,
    inclusion_rule-online true);
    DBMS_OUTPUT. Put_line (' apply rule DML for SHIPPING.) ORDER_ENTRY => ' | v_dml_rule);
    END;
    /

    CREATE DATABASE LINK rep102a.world CONNECT TO strmadmin IDENTIFIED BY strmadmin USING 'rep102a ';
    -check the link works with:
    SELECT * from [email protected];

    BEGIN
    DBMS_APPLY_ADM. () ALTER_APPLY
    apply_name-online "streams_apply."
    apply_user-online "strmadmin");
    END;
    /

    * 7. The source adds the rules of capture, transformation, create a database link for target, add spread rules, then prepare the tables for instantiation: *.

    CONNECT strmadmin/strmadmin
    SET SERVEROUTPUT ON
    DECLARE
    v_dml_rule VARCHAR2 (80);
    v_ddl_rule VARCHAR2 (80);
    BEGIN
    DBMS_STREAMS_ADM. () ADD_TABLE_RULES
    table-name => ' ORDERS. ORDER_ENTRY',.
    streams_type-online "capture."
    streams_name-online "streams_capture."
    queue_name-online "strmadmin.streams_capture_queue."
    include_dml to-online true.
    include_ddl-online fake,
    include_tagged_lcr-online fake,
    source_database => ' REP102A. WORLD ',.
    dml_rule_name-online v_dml_rule,
    ddl_rule_name-online v_ddl_rule,
    inclusion_rule-online true);
    DBMS_OUTPUT. Put_line ('Capture DML rule for ORDERS.) ORDER_ENTRY => ' | v_dml_rule);
    -Add the schema to rename it to change ORDERS to NAVIGATION for this rule
    DBMS_STREAMS_ADM. () RENAME_SCHEMA
    nom_regle-online v_dml_rule,
    from_schema_name-online "ORDERS."
    to_schema_name-online 'EXPEDITION. "
    operation => "ADD");
    END;
    /

    CREATE DATABASE LINK rep102b.world CONNECT TO strmadmin IDENTIFIED BY strmadmin USING 'rep102b ';
    -check the link works with:
    SELECT * from [email protected];

    -post-harvest enqueues the LCR will have schema as EXPEDITION via renamed of schema processing
    -then add the rule of propagation for SHIPPING. ORDER_ENTRY

    SET SERVEROUTPUT ON
    DECLARE
    v_dml_rule VARCHAR2 (80);
    v_ddl_rule VARCHAR2 (80);
    BEGIN
    DBMS_STREAMS_ADM. () ADD_TABLE_PROPAGATION_RULES
    table-name => ' EXPEDITION. ORDER_ENTRY',.
    streams_name-online "streams_prop."
    source_queue_name-online "strmadmin.streams_capture_queue."
    destination_queue_name-online "[email protected]."
    include_dml to-online true.
    include_ddl-online fake,
    include_tagged_lcr-online fake,
    source_database => ' REP102A. WORLD ',.
    dml_rule_name-online v_dml_rule,
    ddl_rule_name-online v_ddl_rule,
    inclusion_rule to-online true.
    queue_to_queue-online fake);
    DBMS_OUTPUT. Put_line ("rule DML of Propagation for SHIPPING. ORDER_ENTRY => ' | v_dml_rule);
    END;
    /

    BEGIN
    DBMS_CAPTURE_ADM. () PREPARE_TABLE_INSTANTIATION
    table-name => ' ORDERS. ORDER_ENTRY',.
    SUPPLEMENTAL_LOGGING-online 'key');
    END;
    /

    * 8. Set the instantiation scn for ORDERS. ORDER_ENTRY on the site target and start apply: *.

    -Apply on site
    CONNECT strmadmin/strmadmin
    SET SERVEROUTPUT ON
    DECLARE
    iSCN NUMBER;
    BEGIN
    iSCN: = DBMS_FLASHBACK. [email protected] ();
    DBMS_OUTPUT. Put_line (' instantiation SCN is: ' | iSCN);
    DBMS_APPLY_ADM. () SET_TABLE_INSTANTIATION_SCN
    source_object_name => ' ORDERS. ORDER_ENTRY',.
    source_database_name => ' REP102A. WORLD ',.
    instantiation_scn-online iSCN,
    apply_database_link => NULL);
    COMMIT;
    END;
    /

    BEGIN
    DBMS_APPLY_ADM. START_APPLY ('streams_apply');
    END;
    /

    -Check if apply is enabled
    SELECT apply_name, dba_apply State;

    * 9. Start capturing on source: *.

    CONNECT strmadmin/strmadmin
    BEGIN
    DBMS_CAPTURE_ADM. START_CAPTURE ('streams_capture');
    END;
    /

    * 10. Wait capture change its status of 'CAPTURER the CHANGES' and check that the status of propagation is ENABLED: *.

    CONNECT strmadmin/strmadmin
    SELECT capture_name, State FROM v$ streams_capture;
    SELECT propagation_name, dba_propagation State;

    * 11. Perform inserts in ORDERS. Table ORDER_ENTRY on the source site: *.

    CONNECT orders/orders
    INSERT INTO orders.order_entry VALUES (23450, 'Johnny Walker', 98456);
    INSERT INTO orders.order_entry VALUES (23451, "Chivas Regal", 98457);
    COMMIT;

    * 12. On the site apply, check the DELIVERY. ORDER_ENTRY and check if the data is replicated: *.

    CONNECT shipping/delivery
    SELECT * FROM shipping.order_entry;

    * 13. Check the application errors in the queue to apply: *.

    CONNECT strmadmin/strmadmin
    SELECT apply_name, local_transaction_id, error_number, error_message FROM dba_apply_error;

    Thank you
    Florent

  • That the face is lit mode bedside table may be shortened? He remains too bright for too long

    That the face is lit mode bedside table may be shortened? He remains too bright for too long.

    Hello

    No, it is not currently possible to customize the duration for which the screen remains lit mode bedside table.

    If you want to send feedback or feature requests to Apple, you can do so here:

    https://www.Apple.com/feedback/watch.html

  • Table of contents for several sheet file...?

    It is possible to:

    1. Create a Table of contents listing all sheets in a file?
    2. Have these hyperlink worksheet titles to the sheets themselves?

    I build what will eventually be a fairly large file (read: 75 + leaves). Rather than scrolling all the leaves one by one by one manually to locate the correct table, it would be useful to have a table of contents or an Index that lists the in order... Ideally, allowing the connection of hypertext link to the leaves they reference. (I swear that this was part of a way-back-when number...)

    Instead, is it possible to auto-trier worksheets in alphabetical order? He would not give me the project view as a table of contents or an Index of 35,000 feet, but at least it would be a little easier to find what it takes.

    Looking forward to sharing the wisdom...

    HI stephanie,.

    The numbers 2 (' 09) and 3 support not the hyperlinks to locations within the current document. Both take in charge of hyperlinks that open a Web page in your default browser or which will open and send a new e-mail message.

    Command-F can be your friend here.

    Place an array of single cell on each sheet (or use a cell on the existing table). Enter a short text string that identifies the table or sheet. Each string must be unique in the document.

    To access the card containing one of the following strings:

    Press Control + F to open the Find dialog.

    Enough chain to identify the worksheet type.

    Number will draw this roadmap forward as soon as it can determine which table contains the cell containing this string.

    Tested with four sheets containing:

    able, baker, charlie and delta

    With this limit together (and any other tables in the document - quite an artificial situation!), type c or d was enough to bring me to sheet 3 or 4, sheets 1 and 2 required two letters (ab or ba) to identify the good sheet and bring it forward.

    With a document containing several tables (and more leaves), create (and remembering) a separate channel for each becomes more complicated.

    You can place a second copy of each in a table of Index or table of contents on a separate sheet. From the index table,

    Copy the entry for the table/worksheet you want to go.

    Open the dialog to find (command-V)

    Paste the entry in the search box. (What it will find and highlight the entry that you have copied to the index table)

    Click on the > button on the dialog to find the occurrence FOLLOWING this string (on your target table.

    Kind regards

    Barry

  • Automate the cells of the filter to another table based on two columns

    Hello

    What I'm trying to do is: filter multiple cells to a new table. In this example, I want that all students (column 'lidnr', 'city', then the first 7 columns) with 1 teacher in the 'First' column to be copied into the table 'teacher 1'. The same goes for students per 1 teacher in the column "second". I know it can be done with the help of the filter and the copy paste, but I would like to know if this can be automated, because there are many more tables in my actual document.

    I've been using maybe to think the search formula but he can't give me more than one result, the result must be unique.

    Thank you very much for your help.

    Kind regards

    Kim

    Hi Kim,

    The usual way to do this is to add an index for each table for which column the data is to be copied.

    Here is an example of preliminary. Improvements after return from the light of day.

    Triangles of error on the last row of T1 are thanks to the formula out of data to search for. Easily fixed.

    Order of the names is different from your example, which is grouped by day numbers. Build lists in the desired order, rethinking the index calculations.

    Course index calculations use the formula below, entered in Table 1::L2 and thre to the rest of the blue full cells filled.

    L2: = IF (OR (RIGHT($H2,1) = RIGHT (L$ 1.1) RIGHT($J2,1) = RIGHT (L$ 1.1)), MAX(L$1:L1) + 1"," ")

    Data recovery on the Table T1 is well done by the following formula, entered in A2 and down and B2 and filled and down-filled.

    A2: = INDEX (array 1::A, CORRESPONDENCE (LINE (−1, 1 Table): $L, 0))

    B2: = INDEX (array 1::B, CORRESPONDENCE (LINE (−1, 1 Table): $L, 0))

    More tomorrow (actually, later today).

  • Need help with table

    I have a spreadsheet that has about 40 different sheets with each of them being a person that lists information about each of them and if they participated in a given event.

    Is there a way to create a table that spans all of the leaves and can show participation based on the event? A bit like a portal into a database. My struggle is to be able to drag the formula down to automatic change sheets. I don't want to have to individually type an if then formula with offset to connect the number for each field.

    You mention a portal on a database. I think you're on the right track. It is easier to gather information in a table that it is from the dozens of tables. Why not keep your data in a database table and 'extract' information for a person of this table.

    If you could give more details one you are trying to do someone here will be able to give more specific suggestions.

    SG

  • How to change the default alignment of text in the cells in a table on the demand for numbers?

    I'm new to Mac. I own a MacBook pro MF839HN/A and currently using the 3.6.2 release NUMBERS (2577). I want to know if I can change the default alignment of text in the cell in a table of NUMBERS application? Also, when I select all the cells in a table to change their alignment, I can only change the horizontal alignment of the text and not the vertical alignment. To change the vertical alignment of the text in a cell, I have to select them individually. Help me with two questions.

    The only way I know is to create a table that is set up as you like, then save the empty document as a template customized by using the menu item "file > save as template:

  • iBooks author - TOC shows the empty entries for table - how to stop this?

    Hello

    I spent hours trying to find an answer to this.

    My book has a few tables - nothing wrong with that.  I have a front cap of the table - that's what I want in the table of contents.

    iBooks author shows instead, empty entries whenever he comes across a table, that is hopeless.

    I just want the topic as indicated above - 2.1.  I don't want 2.2 which is the table.

    Does anyone have an idea how to do this, please?

    If this isn't the case, iBooks author is desperate for any book that contains the tables.

    See you soon,.

    Mike

    Hello

    I found an article from Apple which may help to answer your question and I pasted the link below. I think that you will have to 'say' iBA this is or is not part of the Table of contents (TOC) and's done it with the Inspector tool, Document tab, section TOC. Look down at the bottom of this window to the sign and arrow down to allow the addition of other document settings in the table of contents, or remove some.

    I hope that this help =)

    iBooks author: Customize the table of contents

  • Match color of series for a table and a chart?

    I created a table with 4 sets of data.  Then, I created a graphic line with this information.  I noticed that when I select the line graph the data in the table becomes highlighted with a lighter version of colors used in the chart.  Each series Gets a corresponding really nice color to match the graph.  As soon as you select any where else these colors disappear.

    Is there a way to automatically match line chart series color color of the card?  If this isn't the case, I see this as the colors that appear in the table so that I can put in manually?

    Select the series by clicking on the graph, then any "point":

  • Table of contents don't link to pages in a doc Pages

    Info entry:

    1. a .pages document
    2. blank template
    3. presentation of two columns

    The problem:

    Table of contents generated refuses to do interactive links to the corresponding pages. Styles is ok (so that's why I was able to compose the TOC).

    What is the problem and how to operate?

    4.2 pages (iWork ' 09)

    The document itself (a link to download, editable).

    https://drive.Google.com/file/d/0Bwsy7q2Qc3TCOElPVG02TWFqV3c/view?USP=sharing

    I forgot to mention that my document consists of many sections. While my other document that has its main contents in a cot, a great section working very well in this regard, for example, I am able to go to any title by clicking an appropriate fake (the pointer is active as opposed to the doc above).

    Much appreciate any input on this.

    Thank you

    I.S.

Maybe you are looking for

  • Win7 drivers for Satellite A300 PSAGCE

    Toshiba will support win7 for Satellite A300 PSAGCE?If so it will be soon? There is no driver for this model how is it?

  • Redirect email photos does not

    Hello, I receive an e-mail jokes with pictures. When I send to contacts, they receive the words-less photos. What is the problem please?

  • late of constant development

    Why my pc lag even thought I have nothing wrong as Explorer will stop working and when the game my game stops for a second and then continue like nothing swrong?, firefox is also late even thought in 'safe mode', it will not lag. the last process cpu

  • The desktop icons disappear randomly

    One of our desktop PC's to lose some (but not all) the icons on the desktop to chance-, we noticed what happens when Outlook 2010 is closed on some, but not all occasions... We are running Windows 7. When the icons are visible, we checked the attribu

  • vCenter for ESXi 5.0

    Hello. Don't know if this is the right place for this question, but...vCenter Server: either as a physical plant or as a virtual facility...If crossover is installed on another (or even the same) physical/virtual machine as vCenter, would update vCen