Use of Tables for Addressees

I am doing a letter with two addressees. In Word, the way to do that is by setting up a two-column, one-row table, then making the grid lines invisible. I cannot figure out how to do that and none of the selections seem to allow for that.
Can anyone suggest how to do this?
Thanks.
Dave

Click where you want the table:
+Toolbar > Table > Inspector > Table > Table > Rows: 1 > Columns: 2 > Headers Footers: 0 > Cell Borders: None+
Peter

Similar Messages

  • HT3354 how can i use one table for reference to another

    how can i use a table for a referance to another eg when i type a word in a cell, i will like it to match the word with another table then return the information in the cell i am using

    you can use vlookup() (or any of the lookup family of functions) to locate an item based on a key value:
    Here is an example of something you can do with two tables:
    The table on the right is title "Data" and stores a list of names with age and favorite color.
    The table on the left uses the value in the first column to lookup up information in the table Data
    in the table on the left:
    B2=IFERROR(A2&" is " & VLOOKUP(A2, Data :: A:D, 2, 0)&" years old and likes the color "& VLOOKUP(A2, Data :: A:D, 3, 0), "NOT FOUND")
    I know this look complicated.  so I'll break it up into smalled pieces:
    first the "&" is called the concatenate operator and joins two strings.  like this:
    a string is a set of characters between double quotes.
    so "string 1" & "string 2" becomes "string 1string2"  or "Sam " & "Jones" becomes "Sam Jones"
    you can use cell references instead of strings directly in which case the concatenation is performed on the contents of the cells.
    so if cell A1 contains "Hi " and the cell A2 contains "There"  then A1 & A2 will result in "Hi There"
    so you could add the formula
    A3=A1 & A2
    this is short hand for select cell A3 then type everything including the A3 so that A3 contains "=A1 & A2" (omit the double quote)
    OK.  So the formula I provided concatenates several items together:
    it concatenates A2, then the string " is " then a formula, then the string " years old and likes the color " then a formula
    the two formulas (highlighted in blue) perform a lookup of the value in cell A2 in columns A thru D of the table named "Data".  If if finds the value in cell A2 in the first column of the lookup range in the table Data (column A) then it returns the value from the same row but in the second or third column.
    all that is in a function calld iserror() to trap the condition where the calue you enter in A2 does not exist in the table Data:
    You will find the Numbers users guide and function reference helpful.  You can download then from Apple here:
    http://support.apple.com/manuals/#productivitysoftware

  • Problems using different tables for base class and derived class

    I have a class named SuperProject and another class Project derived from
    it. If I let SchemaTool generate the tables without specifying a "table"
    extension, I get a single TABLE with all the columns from both classes and
    everything works fine. But if I specify a "table" for the derived class,
    SchemaTool generates the derived class with just one column (corresponds
    to the attribute in derived class). Also it causes problems in using the
    Project class in collection attributes.
    JDO file:
    <jdo>
    <package name="jdo">
    <class name="Project" identity-type="application"
    persistence-capable-superclass="SuperProject">
    <extension vendor-name="kodo" key="table" value="PROJECT"/>
    </class>
    <class name="SuperProject" identity-type="application"
    objectid-class="ProjectId">
    <field name="id" primary-key="true"/>
    </class>
    </package>
    </jdo>
    java classes:
    public class Project extends SuperProject
    String projectSpecific
    public class SuperProject
    BigDecimal id;
    String name;
    tables generated by SchemaTool:
    TABLE SUPERPROJECTSX (IDX, JDOCLASSX, JDOLOCKX, NAMEX);
    TABLE PROJECT(PROJECTSPECIFICX)
    Thanks,
    Justine Thomas

    Justine,
    This will be resolved in 2.3.4, to be released later this evening.
    -Patrick
    In article <aofo2q$mih$[email protected]>, Justine Thomas wrote:
    I have a class named SuperProject and another class Project derived from
    it. If I let SchemaTool generate the tables without specifying a "table"
    extension, I get a single TABLE with all the columns from both classes and
    everything works fine. But if I specify a "table" for the derived class,
    SchemaTool generates the derived class with just one column (corresponds
    to the attribute in derived class). Also it causes problems in using the
    Project class in collection attributes.
    JDO file:
    <jdo>
    <package name="jdo">
    <class name="Project" identity-type="application"
    persistence-capable-superclass="SuperProject">
    <extension vendor-name="kodo" key="table" value="PROJECT"/>
    </class>
    <class name="SuperProject" identity-type="application"
    objectid-class="ProjectId">
    <field name="id" primary-key="true"/>
    </class>
    </package>
    </jdo>
    java classes:
    public class Project extends SuperProject
    String projectSpecific
    public class SuperProject
    BigDecimal id;
    String name;
    tables generated by SchemaTool:
    TABLE SUPERPROJECTSX (IDX, JDOCLASSX, JDOLOCKX, NAMEX);
    TABLE PROJECT(PROJECTSPECIFICX)
    Thanks,
    Justine Thomas
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Should I use a table for this ? Also, rounded corner photos

    Hello!
    I have the beginnings of a site up.
    One page has session prices and schdule info.
    I was unable to get these divs to look good using a table, so I just plunked in images.
    The client would eventually like to update this info herself, so obviously I need to find a better way. Any suggestions?
    Is there a way (in HTML)  to put some thing (say a country name) in the left of a div and then a tab so the date goes to the right? (In Quark you'd do command-tab)
    Here is the link: http://www.theworldtravelers.com/SHsession.html
    ALSO, I have made the rounded corners for the photos, I just put those with the image in photoshop. However, the client would eventually like to update these herself as well. Is there an easier way for me to set this up so she doesn't have to learn PhotoShop?
    ALSO ALSO, When the site loads, it loads in pieces, how do I make this ...more pleasant?
    Any help appreciated.
    Thank you!
    Gretchen

    Divs and CSS a great for alot of things, and there are a coupel ways to do what you want... specifically using FLOAT:left.
    <div>
         <div style="float:left;width:100px;">left text</div>
         <div style="float:left;width:100px;">middle text</div>
         <div style="float:left;width:100px;">right text</div>
    </div>
    However, there are MANY ways to do something like this with divs, and which you use depends specifically on what you're going for.
    Further, you're trying to display information in a tabular format. I've always thought it very silly that people get so stuck on divs, and not using tables, that tables arn't used for what they're good for.  In this case, I would use a table nested in a div.
    Regarding the rounded corners and borders on images, again, there are many ways to solve this. My favorite solution:
    <div style="position:relative;z-index:1000;">
         <img src="mainIMAGE.gif">
         <img src="topLeft.gif" style="position:absolute;top:0px;left:0px;">
         <img src="topRight.gif" style="position:absolute;top:0px;right:0px;">
         <img src="bottomLeft.gif" style="position:absolute;bottom:0px;left:0px;">    
         <img src="bottomRight.gif" style="position:absolute;bottom:0px;right:0px;">
    </div>
    Just keep in mind that the layer order of all of the images will be defined by their order in the code: first image is on bottom, next on top of that, so-on-and-so-forth.

  • Method :Want to Use Z-Table for Accessing Data

    Dear All,
      I am new to BADI. I have implented one HR-PAYROLL Badi.
      In this BADI I am having one method . I want to Use One Z-table for accessing data from
      that table . Not able define the table in method.
      Kindly tell me how to do it .
      Thanking you in Advance
      Siladitya

    Hello Siladitya
    I assume your problem is the definition of an itab for selecting data from your Z-table. In case of classes you have to use table types and workareas, e.g.:
    METHOD name_of_interface_method.
    DATA:
      lt_itab    TYPE TABLE OF <name of z-table>,
      ls_record  TYPE <name of z-table>.
      SELECT * FROM <name of z-table> INTO TABLE lt_itab.
      LOOP AT lt_itab INTO ls_record.
      ENDLOOP.
    ENDMETHOD.
    Regards
      Uwe

  • APO DP - use of tables for selections and notes

    I am using APO DP V5.
    I note that tables for holding selections and notes are planning area specific and have tables names such as /1APO/S1nnnnnnnn and /1APO/F1nnnnnnnn respectively.
    My questions:
    1. What is the logic for the naming of these tables
    2. For a given planning area, are the tables names the same as one moves from Development to QA to Production environments
    Thanks,
    Bob Austin

    Bob
    I think the answer for the notes part of this question is here. The logic for the selections should be the same
    Re: Updating of Notes for cells in APO DP
    The table names might not be the same in QA since they are created independently and dynamically. But one way to check is to try it out

  • Here's how to use DYNAMIC tables for almost any structure (4.6C onwards)

    Hi guys
    I'm describing a  feature  here that has been around since 4.6C that is not really well known but can really simplfy programming where you need to get data into some sort of internal table and then display it either as a classical list or as al ALV grid.
    This feature is RTTI which allows you to retrieve your structure, build a dynamic FCAT (Field catalog) and a Dynamic table.
    Here's a really quick little program which reads 200 entries from VAPMA into a dynamic table. Any structure will work if you use the code sample shown.
    To pass it to an ALV GRID  is then really simple as you've already got the Field Catalog, Table and Data.
    The method I'm showing below will work for almost ANY structure you care to name whether or not the fields are in the data dictionary.
    I create a dynamic FCAT and dynamic table based on the FCAT and then populate it.
    You can create field catalogs dynamically quite simply by using the new RTTI facility available from 4.6C onwards.
    (From here it's only a small step to dynamic tables and EASY ALV grid displays)
    Example to create dynamic FCAT and table and populate it with 200 entries from VAPMA
    PROGRAM ZZ_BUILD_FLDCATALOG.
    tables: vapma.
    Define any structure
    types: begin of s_elements,
    vbeln type vapma-vbeln,
    posnr type vapma-posnr,
    matnr type vapma-matnr,
    kunnr type vapma-kunnr,
    werks type vapma-werks,
    vkorg type vapma-vkorg,
    vkbur type vapma-vkbur,
    status type c,
    end of s_elements.
    end of your structure
    data lr_rtti_struc type ref to cl_abap_structdescr .
    data:
    zog like line of lr_rtti_struc->components .
    data:
    zogt like table of zog,
    wa_it_fldcat type lvc_s_fcat,
    it_fldcat type lvc_t_fcat ,
    dy_line type ref to data,
    dy_table type ref to data.
    data: dref type ref to data.
    field-symbols: <fs> type any,
    <dyn_table> type standard table,
    <dyn_wa>.
    *now I want to build a field catalog
    *First get your data structure into a field symbol
    create data dref type s_elements.
    assign dref->* to <fs>.
    lr_rtti_struc ?= cl_abap_structdescr=>describe_by_data( <fs> ).
    zogt[] = lr_rtti_struc->components.
    Now build the field catalog.  zogt has the structure in it from RTTI.
    loop at zogt into zog.
    clear wa_it_fldcat.
    wa_it_fldcat-fieldname = zog-name .
    wa_it_fldcat-datatype = zog-type_kind.
    wa_it_fldcat-inttype = zog-type_kind.
    wa_it_fldcat-intlen = zog-length.
    wa_it_fldcat-decimals = zog-decimals.
    wa_it_fldcat-coltext = zog-name.
    wa_it_fldcat-lowercase = 'X'.
    append wa_it_fldcat to it_fldcat .
    endloop.
    Let's create a dynamic table and populate it
    call method cl_alv_table_create=>create_dynamic_table
    exporting
    it_fieldcatalog = it_fldcat
    importing
    ep_table = dy_table.
    assign dy_table->* to <dyn_table>.
    create data dy_line like line of <dyn_table>.
    assign dy_line->* to <dyn_wa>.
    select vbeln posnr matnr kunnr werks vkorg vkbur
    up to 200 rows
    from vapma
    into corresponding fields of table <dyn_table>.
    from here you can pass your table to a GRID for display etc etc.
    Cheers
    Jimbo

    Thanks for the info.
    I went to their web site and also Googled.
    I found a great review on their photographer's books on nikonians.org
    They use an HP/Indigo Ultrastream 3000 digital offset press for all hardcover books, which is GREAT!
    I did sign up and requested the 45 day trial "photographer" account.
    I am curious if Shared Ink offers a size that matches the ONLY current book size from Aperture, the odd 8.5x11.
    In the above review, I saw that Shared Ink offers a 12x12 book.. very nice! Except you will need to design that one in CS2
    So then, all that Apple really needs to do is simply add the ability to select/create custom book sizes. Then we don't need a printing service from Apple, as there are plenty of options out there, and more arriving on the market each month!

  • Should I use a table for thumbnails? [was: Experts,  which is best for me?]

    on some of the pages on my web-siteI am going to have several (perhaps approx 10 pages) with 12 or 15 thumbnail photos on it.
    I am then going to link each thumbnail to another page which will have a larger version of the thumbnail along with a brief description of the photo.
    I am hoping to have all pages taken from a template base with just a header and a navigation bar (pop menu magic from PVII). I want to link the pages with the large photo back to the thumbnails page.
    Before I start on my site, I would be interseted to find out what some of you experts out there would advise with regard setting my site up.
    I know there are horses for courses and many different opinions so i don't think I will get a definitive answer.
    My question is, for my type of site as described above, which is best, Tables, div tags  or both together. i.e. Div tag for header, div tag for nav bar and a table in a div tag.  and your reasons why would be helpful. I know that this has been discussed many times but I want to know answer specifically for my web-site and not which is best generally.
    I hope my question is clear enough and thanks in advance for any feedback.
    [Subject edited for clarity by moderator]

    It may sound as if I am being lazy here but is it easy to integrate JAlbum in to my site. Is it a case of copying and pasting or does it entail a lot of knowledge.
    I am not really being lazy, I just want to get things moving so that when I get round to building my site, I can keep moving at a steady pace.
    My website which I have up already is www.designekitchens.co.uk if you want to give yourself a better idea of what is required.
    Does using a slide show mean that I loose some pages so less chance of being spidered by search engines?
    I don't think I could manage all this if there were no forum so thanks again.

  • Curiosity: How to use a table for input when testing a functionmodule?

    actually I am sick of writing test programs for every function I want to test using ABAP.
    So why it is (made) impossible to generate input data for a table as input parameter of a functionmodule?
    Has really nobody ever tested this stuff when the test function was implemented in SE37 or was this bug implemented on purpose to generate work?

    Andreas,
    You can input data into the internal table by:
    Test FM
    > Testing initial screen --- click on the table icon against your table parameter
    > Input your input data in the fields
    > to Input more lines in the table.. press Insert Line (icon with plus sign)
    After this press back button.
    Now, you will have your test data in the tables.
    Regards,
    Naimesh

  • Use of table for field names

    hi guru's
    is there any way to check the table if i am having the data elements.
    i am having some data elements or field name, i just wanted to know, what are all the table which are using this fields.
    se16 is for checking the table, but i want to check the data element or field names.
    ex: i wanted to know what are all the tables is using the BUDAT fields.

    Hi,
    Table <b>DD03L</b> can be used to find out all the tables which are using a particular field.
    Regards,
    Amit
    *Always reward points for helpful answers

  • Problem in Master Detail form when using ADF table for Detail

    hi,
    jdev version-11.1.2.1.0
    i have create Master detail form using datacontrol drag as ADF Master Form Detail Table.
    Now when i create a new row in Detail table using CreateInsert button a blank new row created on the top of detail table.
    and other row show that data of previous record based on master.
    problem is that i want when i click on createInsert button all row of detail table should be blank and when user fill two or three row then commit.
    Thanks in Advance

    Hi,
    if a detail table has data, then createInsert adds to these. If you want to hide existing rows, create a new View Object instance and set its "Retrieve from the Database" option to "No Rows". The use an af:switcher to change the table shown when the user clicks the createInsert button. There is a bit of coding required to have this use case in ADF, but its mostly declarative. Bottom line is that there is no automated option other than creating new rows in a separate page or dialog if you are bothered by existing rows
    Frank

  • Table for defect or damage code deletion field.

    Dear All,
    We have developed Z-Report in quality for recording defect.
    I used viqmfe table for defect recording and field is fecod-damage code.
    But my problem is after deleting defect in qa32,in z-report the defect is remain as it is.
    I have already search defect deletion field, still ihave not got this field.
    Pls suggest.
    Thanks
    Shabbir

    Hi ,
    Please checQMFE, QMSM,QMAA, QMIH & for all deletion indication entries
    you need to get the corresponding flag for fiedl like  KZLOESCH .
    Ramesh

  • How can I use external tables with directories not on Oracle host?

    Oracle 11.2.0.2
    We have developers using C# to populate global temporary tables (two one header and detail with 1 to many relationbship between these two tables). The process of using C# was blowing up memory on Windows.
    As an alternative I requested them to create two CSV files and I can use sqlldr to load the detail CSV file of over 1 million rows under 15 seconds. It came to my mind that I could use external tables for this purpose with getting read of header and trailer from the CSV files.
    The issue I have is that I am not a DBA so I do not have access to OS host that Oracle instance is running. sqlldr is a client side tool, whereas external tables are server side. I was wondering if there is an alternative in 11g to use external tables without creating directories on the OS host that Oracle runs on? Are there other alternatives?
    Thanks

    905989 wrote:
    Oracle 11.2.0.2
    We have developers using C# to populate global temporary tables (two one header and detail with 1 to many relationbship between these two tables). The process of using C# was blowing up memory on Windows.
    As an alternative I requested them to create two CSV files and I can use sqlldr to load the detail CSV file of over 1 million rows under 15 seconds. It came to my mind that I could use external tables for this purpose with getting read of header and trailer from the CSV files.
    The issue I have is that I am not a DBA so I do not have access to OS host that Oracle instance is running. sqlldr is a client side tool, whereas external tables are server side. I was wondering if there is an alternative in 11g to use external tables without creating directories on the OS host that Oracle runs on? Are there other alternatives?
    Thanks
    no other alternative

  • Table for transport history

    Hi Experts,
    I want to know which table stores the information about the history of an object's transports. I am looking for which transport were created and moved for a specific query.

    Hi There,
    You need to use two tables for this.
    1. RSRREPDIR - Identify COMPUID for your query name.
    2 E071 - In SE16 of this table pass these values :
                 PGMID = R3TR, OBJECT = ELEM, OBJ_NAME = COMPID from above table.
    Output from E071 will give you the transport request/task number(s) for this query.
    Cheers.
    Vasu

  • Using nested tables

    Hi experts,
    is there a way of using nested tables, for example:
    Field1
    ---value1-1
    ------example1-1
    ------example1-2
    ------example1-3
    ---value1-2
    ------example2-1
    ------example2-2
    ------example2-3
    ------example2-4
    ------example2-5
    ---value1-3
    ------example3-1
    ------example3-2
    Field2
    ---value2-1
    ------example1-1
    ------example1-2
    Or isn't it possible?
    Thanks
    Michael

    Hi,
    Nested table is not allowed but if it is property structure like address etc which can be included in more than one entities then you can use complex type Complex Types - SAP NetWeaver Gateway Foundation (SAP_GWFND) - SAP Library
    you can refer this Odata Services with Complex Types and Netweaver Gateway : Multiple Output Tables : Odata | SCN
    Regards,
    Chandra

Maybe you are looking for

  • "This is an Adobe Illustrator file that was save without PDf content."

    I have a client that has been working on a file in AI CS, never left his machine, but when he went to open it today he gets a message that says this file "was generated by a newer version of Illustrator. Would you like to import this file? Some data

  • How do I store documents in iCloud

    Okay...... so I am using Microsoft Office on my MacBook.  I want to be able to upload a ocument that I creted in MS Word to iCloud.  I cannot find the instructions to do so. ANY HELP!!!! Thanks Matt

  • Print problems double byte characters (ZH - simplified Chinese)

    We are currently preparing a 4.7 (WebAS 6.20 on SLES) rollout in China and struggle with a severe printer problem. Our SAPScript forms contain a mixture of western and simplified Chinese characters. The printouts come just with either hashes, blanks

  • JComboBox renderer

    Hello, i want to make a new renderer for my combobox, is it possible to get rid of the white background? at same time i want to have the first item in the combobox to be red With regards Sven

  • JApplet Reloading Problem

    Hi, I am developing a Swing applet, which actually runs quite a heavy application. It uses at least two jar files too. the functionality requires that i open the page containing in a new browser window. I do that using window.open() successfully. Onc