Import Table or copy of rows, columns, or cells

Hi all

Since MS Excel, how can I import 10 cells in the Framemaker Table, where I have already 10 empty cells.

Also, is it possible to copy several lines or columns in MS Excel (or MS Word) in the Framemaker?

Thank you.

You can copy and paste Excel cells in a FrameMaker paragraph, to create a new table of FrameMaker with these cells. You can then copy the new FrameMaker table cells into an existing table in FrameMaker and remove the new table. In particular, in Excel, copy the desired cells. Then, in paragraph FM, use edit > paste special to paste the cells under the RTF Format.

-Lynne

Tags: Adobe FrameMaker

Similar Questions

  • Meter of row/column for tables

    Hello
    I know this is very basic, but so far the examples here that I dug up doesn't really do anything remotely to what I want.
    I have 3 databases. Although they are defined as 'connections' in SQLDeveloper, I hope it is the same, that I'm still not used to the abstractions of Oracle.
    Each has several tables. All I want is loop in each of the 3 DBs and number of journal lines and County table.

    Say DB1:
    Rows: columns:
    Table 1: x y
    Table2: x y
    ....

    I really don't like what is inside of them. I found an example that does but it listed some system tables that are not part of my db. Change the "owner" has not really helped.
    The value of the variable "Owner" means a database, which is correct?
    Oh and I also don't care if the code is "inefficient", tables are not that big.

    Thanks in advance.

    Published by: 940349 on June 14, 2012 06:22

    If you mean you want only for specific schema / owner, you can add a where clause to interrogate or change the query and run it to scpecific user (schema). If you intend to run the specific user query the query would be something like below:

    select table_name,count(*) over() count_table,column_name,count(*) over(partition by table_name) count_column from user_tab_columns
    
  • How can I write in a table cell (row, column appear) in a databae?

    How can I write in a table cell (row, column appear) in a database using LabVIEW Database Toolkit? I use Ms Access. Suppose I have three columns in a table, I write 1 row of the 1st column, then 1st rank of the 3rd column. The problem I have is after writing the 1st column of 1st row, the reference goes to the second row, and if I write in the 3rd column, he goes to the 2nd row 3rd column. Any suggestion?

    When you perform a SQL INSERT command, you create a new line. If you want to change an existing line, you must use the UPDATE command (i.e. UPDATE tablename SET column = value WHERE some_column = some_value). The some_column could be the unique ID of each line, date and time, etc.

    I don't know what is the function to use in the Toolbox to execute a SQL command, since I do not use the Toolbox. Also, I don't understand why you don't do a single INSERT. It would be much faster.

  • Name of tables listing the definitions of Web Forms row\column\POV

    All,

    We have some applications planning and a lot of Web forms to allow entry in varied combinations of row\column\POV. Users, it is difficult to locate the correct online with the combination of right row\column\POV form, to allow them to enter data and have to open\close a large number of Web forms before they find the right pair they need\want.

    I know that the relational component of a planning application includes many tables store the definitions of Web forms, etc.. I would like to know where I could find a list of the tables that contain the definitions row\column\POV of each Web forms for each planning application in order to quickly identify the correct webforms who could access their data entry of support staff.

    Thanks in advance.

    JBM

    I think the feature is available for a long time even since version 9

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to check the existence of a value in a table before copying the data?

    Experts,

    I have a requirement in which I need to copy data (4 columns) table A to table B (4 columns)

    Table A (entry)

    PART_ID PART_NAME PART_OPT_CD ENGG_OPT_CD

    1 "AAA" 10 100
    2 'BBB' 20 200
    3 'CCC' 30 300
    4 'DDD' 40 400
    5 'EEE' 50 500


    I have a table named OPTIONS with a single column. This is a table of reference of business which has the master list of option codes.

    OPT_CD
    10
    20
    30
    50
    60
    100
    200
    400
    500


    I need to copy Table A to Table B, but in doing so, I need to check the values of columns 3 and 4 in the OPTIONS array.
    If there is copy the folder B. Otherwise error in the log in a file/table and continue with the next copy

    TABLE B (exit)

    PART_ID PART_NAME PART_OPT_CD ENGG_OPT_CD

    1 "AAA" 10 100
    2 'BBB' 20 200
    5 'EEE' 50 500

    WARNING file or a table should have the details below.

    300 ENGG_OPT_CD does not exist in the table OPTIONS, so part_id 3 have not migrated
    40 PART_OPT_CD does not exist in the table OPTIONS, then part_id 4 have not migrated

    Company don't bother about the format of error, we need this information to correct the OPT_CD in the OPTIONS table.

    Can anyone suggest a better way to do this. Thank you for your help in advance

    Hello

    Its very similar to your previous post.
    Re: PL/SQL help
    The only difference being that you have to outer join to your superimposed master table, since your search in two columns values occur only in a single column on your Master table.

    Something like that;

    create table a (part_id number, part_name varchar2(10),part_opt_cd number,engg_opt_cd number);
    
    insert into a
    (select 1 Part_ID, 'AAA' Part_Name, 10 Part_Opt_CD, 100 ENGG_Opt_CD from dual union all
    select 2, 'BBB', 20, 200 from dual union all
    select 3, 'CCC', 30, 300 from dual union all
    select 4, 'DDD', 40, 400 from dual union all
    select 5, 'EEE', 50, 500 from dual union all
    select 6, 'FFF', 60, 500 from dual
    )
    /
    
    create table b (part_id number, part_name varchar2(10),part_opt_cd number,engg_opt_cd number);
    
    insert into b
    (select 1 Part_ID, 'AAA' Part_Name, 10 Part_Opt_CD, 100 ENGG_Opt_CD from dual union all
    select 2, 'BBB', 20, 200 from dual union all
    select 5, 'EEE', 50, 500 from dual
    )
    /
    
    Create table master (OPT_CD number);
    
    insert into master (
    select 10 opt_cd from dual union all
    select 20 from dual union all
    select 30 from dual union all
    select 50 from dual union all
    select 60 from dual union all
    select 100 from dual union all
    select 200 from dual union all
    select 400 from dual union all
    select 500 from dual
    )
    /
    
    create table log_msg
    (msg varchar2(100)
    ,t timestamp default current_timestamp)
    / 
    
    SQL> insert all
      2    when Master1_ID is not null and
      3         Master2_ID is not null then
      4      into b (Part_ID, Part_Name, Part_Opt_CD, ENGG_Opt_CD)
      5      values (Part_ID, Part_Name, Part_Opt_CD, ENGG_Opt_CD)
      6    when Master1_ID is null or
      7         Master2_ID is null then
      8      into log_msg (msg) values (Part_Opt_CD || ' ' || ENGG_Opt_CD || ' does not exist on the Master table')
      9  select m1.Opt_CD      as Master1_ID
     10        ,m2.Opt_CD      as master2_ID
     11        ,a.Part_ID      as Part_ID
     12        ,a.Part_Name    as Part_Name
     13        ,a.Part_Opt_CD  as Part_Opt_CD
     14        ,a.ENGG_Opt_CD  as ENGG_Opt_CD
     15  from (
     16        select a.Part_ID, a.Part_Name, a.Part_Opt_CD, a.ENGG_Opt_CD
     17        from a
     18        left outer join b on  a.Part_ID = b.Part_ID
     19        where b.Part_ID is null
     20      ) a
     21  left outer join master m1 on   a.Part_Opt_CD = m1.Opt_CD
     22  left outer join master m2 on   a.ENGG_Opt_CD = m2.Opt_CD
     23  /
    
    3 rows created.
    
    SQL> select * from log_msg;
    
    MSG                                         T
    ------------------------------------------- -------------------------
    40 400 does not exist on the Master table   05-OCT-11 09.44.17.621000
    30 300 does not exist on the Master table   05-OCT-11 09.44.17.621000
    
    SQL> select * from b;
    
       PART_ID PART_NAME  PART_OPT_CD ENGG_OPT_CD
    ---------- ---------- ----------- -----------
             1 AAA                 10         100
             2 BBB                 20         200
             5 EEE                 50         500
             6 FFF                 60         500
    

    Note, I have included an additional line in table A in order to prove that the INSERTION will occur in table B. Errors, as you can see have been inserted in the table LOG_MSG.

    Published by: bluefrog October 5, 2011 09:48

  • Import from Erwin 7.3 updates column comments in the wrong section

    There is a bug with importing Erwin. Comments of the column are not placed in the comments section of RDBMS, they are put in the regular comments section so when exporting to DDL, they do not put in the database. We want comments in the database and Erwin here as a section for comments. Anyone know a way around this? Or can it be fixed in the next version?

    Hello

    There is a transformation that can be used for this - look at "tools > design rules > Transformations"-he is named "copy comments on comments in RDBMS.

    Philippe

  • display the data in row columns

    I looked through the previous posts, but it is impossible to find a solution to my problem.

    I want to display the data in row columns.
    I have shown in the table below and test data and the sql code that gives me the result desired.
    However, you can see that the sql depends of me knowing all the values in the column "rank".
    I want a way to produce the output without knowing the values of rank.
    CREATE TABLE test1 (
      accno       NUMBER,
      holder_type VARCHAR2(10),
      rank        NUMBER)
    
    INSERT INTO test1 VALUES (1, 'acr', 0);
    INSERT INTO test1 VALUES (1, 'bws', 1);
    INSERT INTO test1 VALUES (1, 'aaa', 2);
    INSERT INTO test1 VALUES (2, 'cds', 0);
    INSERT INTO test1 VALUES (2, 'xxx', 1);
    INSERT INTO test1 VALUES (3, 'fgc', 0);
    INSERT INTO test1 VALUES (4, 'hgv', 0);
    INSERT INTO test1 VALUES (4, 'bws', 1);
    INSERT INTO test1 VALUES (4, 'qas', 2);
    INSERT INTO test1 VALUES (4, 'aws', 3);
    
    Here's the required output:=
    ACCNO     ALLCODES
    1     acr bws aaa
    2     cds xxx
    3     fgc
    4     hgv bws qas aws
    
    I.E. for each accno display the holder_types in rank sequence.
    
    SELECT * FROM
    (SELECT 
           a0.accno,
           a0.holder_type || DECODE(a1.holder_type, NULL, NULL, ' ') ||
           a1.holder_type || DECODE(a2.holder_type, NULL, NULL, ' ') ||
           a2.holder_type || DECODE(a3.holder_type, NULL, NULL, ' ') ||
           a3.holder_type || DECODE(a4.holder_type, NULL, NULL, ' ') ||
           a4.holder_type allcodes
      FROM (SELECT accno,
                   holder_type,
                   rank
              FROM test1
             WHERE rank = 0) a0,
           (SELECT accno,
                   holder_type,
                   rank
              FROM test1
             WHERE rank = 1) a1,
           (SELECT accno,
                   holder_type,
                   rank
              FROM test1
             WHERE rank = 2) a2,
           (SELECT accno,
                   holder_type,
                   rank
              FROM test1
             WHERE rank = 3) a3,
           (SELECT accno,
                   holder_type,
                   rank
              FROM test1
             WHERE rank = 4) a4
     WHERE a0.accno = a1.accno(+)
       AND a0.accno = a2.accno(+)
       AND a0.accno = a3.accno(+)
       AND a0.accno = a4.accno(+)) a
       ORDER BY accno

    So you're after what we call 'Aggregation in the chain.'

    Check this link as it highlights several techniques:

    Aggregation of string techniques

    A Re: Concat ranks of the values in a single column Michael

    At Re: multiple lines in a single line in the 'single column Table' followed by reason of Billy on the conduct of a stragg first.

    In addition, 11 GR 2 has the LISTAGG function.

  • Newb question: SQL query on an imported table

    Hi all. I'm a newb, that this issue will probably tell you!
    But I am very interested to familiarize themselves with the Oracle environment.

    I installed 10g Express.
    I was able to set up a new user (schema) profile?

    I created a new table, by importing an Excel file, saved as a CSV file. It has a PK.

    When I log in as an administrator, I can see the table 'discovers' the content.
    However, I can't run a SQL command with the new table.
    It is said Table or view does not exist.

    The table is called "Customers" and contains a column called "City" and I type City Select From Customers.

    Like the Adminisistrator, I have "given" all the rights for the new table to my profile newly created (schema).
    When I connect as long as this new person, I can't see the new table imported into the list of tables, yet alone to run an application or a SQL to it. What did I miss?

    Any tips will be appreciated. Glyn gray...

    Published by: user12501005 on February 7, 2010 11:26

    Hello

    You wrote:
    The original table is still visible to the diagram of the system, but he reports yet again as saying that the table does not exist when I try SQL.
    So is there a reason why a table imported is visible to the user DBA, but SQL does not exist?
    The other imported tables, those the DBA can run SQL still aren't visible to other users (schemas).
    The DBA has "tuned" EVERYTHING to the default HR schema.
    When I connect like HR, I'm unable to find the given table and SQL reports that the table does not exist.

    If I understand that you have created a Table in the schema of the SYSTEM, and you cannot question him by SQL.

    For example, if you then create a table A in the diagram of SYSTEM, you can view the table A if you connect to the database
    SYSTEM or any intended user he has the privilege to CHOOSE ANY TABLE.

    If you are connected to a user (for example, HR), which does not have this privilege, you can not query the Table.

    If you have a privilege to HR as follows:

    connect system/
    grant select on A to HR;
    

    Then you can query the Table has to HR:

    connect HR/
    select * from system.A;
    

    Hope this helps.
    Best regards
    Jean Valentine

  • How can I make a cell formula will apply for the entire column? For example D2 appears B2 - C2. How can I copy this formula for each cell in the column?

    How can I make a cell formula will apply for the entire column? For example D2 appears B2 - C2. How can I copy this formula for each cell in the column?

    If you want the formula is the same (B2 - C2) in the cell of each column you must change it as ($B$ - 2$ C$ 2). Then copy it, select the whole column and paste.

  • Importing photos with copy

    Hello

    I have a question about behavior if PHOTOS during import.  I'm about to change my preferences and I want to know what to expect.

    1. my current photo library was created with NO use icloud photo library.  I'm going to leave it off.

    2. my current library had also 'Copy items in the library of Photos' taken out of SERVICE.  So the result was that I just got links in my library in the DROBO folder where the pictures actually lived.  I then invested a lot of time to faces everything works fine.   However, the Drobo is SLOOOWWWW and my hardware is changing so...

    3 I intend now to my library a new large SSD I'm about to install.  I would really now to copy every 100 GB or so images in my library to enjoy the speed and get a free backup copy in the process.  However, I really want to have to do all that FACES tuning again.

    So, now the question.  If I go to PHOTOS prefs and turn on the "copy items to the box library", this will apply to the new photos imported or it will go to seek out those for whom a link only currently.  I guess it won't, but I hope.  If I reimport them once again, I'm afraid I'll get the pics in double... one for the link that is there now and another for the import copy.

    If I have to, I'll start all over again, but here, I hope it is an easier way!  Suggestions, anyone?

    Thank you

    If I go to PHOTOS prefs and turn on the "copy items to the box library", this will apply to the new photos imported or it will go to seek out those for whom a link only currently.  I guess it won't, but I hope.

    Turn on the "copy items to the Library check box' apply only for new photos that you import.

    Copy the old originals in your select Photo library in Photos and use the command "file > consolidate."

    Who will copy the originals in your photo library and transform the photos selected in managed photos.  All changes and faces tags will continue to work. And the original files will be stored safely in your library.

    To quickly select all the photos that have to consolidate use smart albums.

    Create a smart albums with "file > new smart album ' and set the constraint of the album 'Photo is referenced. This smart album will display all photos with original image files referenced.

    You might want to take a look at this help page: https://help.apple.com/photos/mac/1.0/?lang=en#/pht1ed9b966d

  • LabVIEW can find location of row/column selected in the open worksheet?

    Instead of asking user to LabVIEW manually to input data (location of the row/column you want for data entry in the spreadsheet open), can read LabVIEW that the location of the row/column selected in a worksheet open, selected by the user?

    If so, LabVIEW now has a starting location for the user to launch inputing data without having to ask the user LabVIEW!

    Any ideas on how to achieve this would be very appreciated!

    Thank you!

    Barry

    For what you want to do here, read and write in the cell current.  This example shows you the basics...

    Example of NOR

  • can I create a generic function row column Point?

    I have a VI with several inside multi-column list boxes.  One way that I've seen do writing entries is as follows:

    It works very well.  The only problem is that, to get the "Point to the row column" (PTRC) method requires (as I understand it) right click on the MCL and selecting this method.

    I have several MCLs, and I wanted to create a structure of the event which was generic and one of them was able to treat similarly.  But the problem with that is that I don't know a way to access the PTRC method for each of them.  The only way I know to do would be to use VI scripts to create the reference on the fly (not sure if it still works), but even if it works for me, I don't think that it will work with the free runtime LV (my experience is that you can not use RTÉ to run any screws that use scripts of VI).

    So my question is, is it possible to get a reference to the PTRC - generically - method without using scripts VI, or y at - it another way to do what I'm trying to do here (make the MCL writable by the user and have it keep the values that the user wrote to her during the execution of the VI).

    Thank you

    Hello bmishoe,

    You are almost there - just use an explicit, not implicit method and use this node of CtrlRef on the structure of the event to give you a reference to the control associated with the event.  At this point, all you have to do is add the MCLBs to the structure of the event.

    Kind regards

  • Select row column in classic report default beat all

    Hello

    Based on my previous thread how can I do the same task in classic report.

    I followed your previous link to all select and clear the all check box.

    even he just not all checked when the page loads.

    Please help with this too.

    Hi Maxence,

    CORINE wrote:

    Hello

    Based on my previous thread how can I do the same task in classic report.

    I followed your previous link to all select and clear the all check box.

    even he just not all checked when the page loads.

    Please help with this too.

    The answer lies in the previous thread: Select the row column in report default heartbeat intractive all

    I hope this helps!

    Kind regards

    Kiran

  • How can I import tables to a different schema in the relational model existing... to add these tables in the existing model? PLSS help

    How can I import tables from a different schema in the relational model... to add these tables in the existing relational/logic model? PLSS help

    Notes; I already have a schema ready relational/logic model... and I need to add more tables to this relational/logic model

    can I import the same way like I did before?

    But even if I do the same how can I add it in the template? as the logic model has been designed...

    Help, please...

    Thank you

    To view the diagram of logic model in Bachman notation, you right-click on a blank area of the diagram and select the rating > Bachman Notation.

    David

  • Group Rows\columns open on each update

    Hello

    Whenever I have updated a smartview query that grouped rows & columns open, is there a vision where I can avoid this?

    Thank you

    In Smart View options on the formatting tab uncheck adjust columnwidth

Maybe you are looking for

  • Cannot get full screen with videos uTube

    I bought a Mac mini-opportunity 2.1 mid-2007, 1.83 GB and 2 GB of ram.  OS 10.6.8 using Safari I can watch videos, but when I click on full screen, I get a message stating that the browser does not support.  I am using a VGA monitor.    On my iMac de

  • Group chat iMessage

    When you use iMessage group chat, when I get a message, it is up on my lock screen. I slide to the left for the answer, I press on send and then I get a notification saying "failed to send message." This is because when I look at how he has sent, it

  • HP Elitebook 8470p G1: extended Test drive: failure

    Hi, the last day I did the upgrade to Win10, but now I long waiting for this drug. In addition, I get this blue screen: 'death of critical process '. I do the extended Hard Drive Test.Please see the results below: Smart Check: spent Long DST: failure

  • PXE - MOF: Exit Intel PXE ROM

    PXE - E61: Media test failure, check cable of PXE - MOF: Exit Intel PXE ROM Boot failure: System halted That's what I get when I boot my MicronPC. It works under XP and worked fine until two days ago. How can I reinstall the PXE? I need help. Thank y

  • Difficulty of error code 0 x 80070424

    In Microsoft security my fire wall is down and I can't download updates or turn on the firewall and I get this code 0 x 80070424. Help, please