Multiple Address fields in Pages Template

I am working on creating a Pages template to record sales calls and I wanted to use the Address fields to insert two different companies into the document. When I try now, the same company is inserted into both company fields. Any ideas on this?

Greetings,
Sorry, but you cannot make the address section into one field, nor can you use Rich Text in Address Book.

Similar Messages

  • Multiple tag fields in page properties dialog

    Is there a way to have multiple tag fields in the page properties dialog and have them work with the default TagManager API?  From what I've tried so far it looks like anything that is not in the root jcr:content node of a page or asset doesn't apply the cq:Taggable mixin to it.  We are trying to spread out our structure of tags across fields so that authors don't have to navigate through multiple heirarchies. We are worries about that list becoming unwieldly to manage.
    I'm not against doing some customiziation but it looks like the TagManager will only utilize fields named cq:tags in its query.

    Hi,
    According to your post, my understanding is that you want to add multiple editable fields in the page in SharePoint online 2013.
    Here is a solution for your reference:
    1. We can create a Custom List and add some fields in it.
    2. Create a Datasheet View in this List.
    3. Add this Custom List(as an app part) into the page you want.
    4. Edit this App Part and set its view as Datasheet View.
    If I misunderstand what you mean, please provide more details on your requirement(picture would be better).
    Best Regards,
    Dennis Guo
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Address book field, multiple address merge on one page.

    OK, after spending half a day tying to resolve this issue, I have given up. I do need to do this one way or another. Appreciate any help at hand.
    I need to create a list of company info from address book into pages. problem is if I 'insert address book field' say 'company name' twice and do a merge, Pages drag the same name in twice and not the next address merge. but does put it on the next page, no good need at least 5 different address on one page.
    Guy

    You are responsible of the spent time.
    Pages never claims that it is designed to fill pages with different labels.
    It claims that it is able to merge address in documents which is definitely not the same thing.
    The Apple's tool dedicated to label printing is AddressBook.
    The one dedicated to merge from AddressBook is Pages.
    Details available in PDF User Guide page 217
    and in the Help's page entitled: "Using Address Book Fields" (I got it searching for "merge").
    Yvan KOENIG (from FRANCE jeudi 14 août 2008 15:09:28)

  • How to print multiple addresses on one sheet of avery labs using Pages?

    How do I print mulitple addresses on one sheet of avery labels?
    I used Numbers to make a database.
    I used Pages to use the Avery label template.
    I formatted the labels for the database but it shows my first sheet of labels as my first addressee and my second sheet as the second addressee.  I want multiple addresses on one sheet of labels!!

    What version of Photoshop do you have? Is it the full version or elements? What OS do you have and it's version?

  • How to print multiple footers for each page in RTF template xml report.

    Hi,
    How to print multiple footers for each page in RTF template xml report.
    i am able to print ( two sets ) ...
    up to last page ( one template ) and for last page ( another template).
    i want to change the footer information based on the group value printed in the report ( it might be 5 to 6) In every report run.. can you please check and let me know do we have any feasibility to achieve this.
    Thanks in advance.
    Regards,
    KAP.

    You can remove all other logic, like last page only contents (start@last-page:body), etc and section breaks if any you have inserted manually.
    Just have for-each@section logic.
    It would be difficult for me to guess what you have done without looking at your RTF or describing here.

  • Drag and drop an Address Book card onto a Pages address field

    Whenever I "drag and drop" an Address Book card onto a Pages address field, it hangs for almost a minute before the address appears. I don't believe this is normal, does anyone else have this problem?

    Sounds like you "upgraded" to Pages 5.
    Apple has removed over 90 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

  • How do I get the address field to show (again) at the top of the page????

    I was messing around with stuff I don't understand, and managed to make the web address field disappear from the top of the page....now I've got only a page title in a gray field. Help! (please). I can't figure out how to get the address to appear again.
    I'm stuck and can't surf

    View menu...  try either "Show Toolbar" or "Customize Toolbar..."
    charlie

  • Passing/retrieving hidden fields from Its template(IAC)  to BSP page

    Hi i m passing hidden fields from its template to custom BSP page...but not able to retrieve the hidden field in bsp page...is there any way we can retrieve the data....is there any equivalent of request.getattribute() method which we use in jsp to fetch the hidden fields....

    <i>i m passing hidden fields from its template to custom BSP page...but not able to retrieve the hidden field in bsp page...</i>
    from ITS template how are you calling/passing parameter to BSP
    thru a form submit? or are you just openning the BSP thru a url link, in either case
    you could pass the data as a form field (post) or in the url of the BSP (GET)
    for example if the form field name in ITS template is myformfiled and you are submitting that to the BSP page then in the corresponding bsp page declare a page attribute withe same name (myformfiled) and mark the auto check box.
    now the value passed from ITS template will be available within BSP in the ABAP variable myformfiled which you can use the way you want.
    Hope this is clear
    Raja

  • SSRS 2005 - Split multiline address field into multiple address columns

    Hi all
    I have an address field called SiteAddress, which is multiline with carriage returns, and stores addresses as:
    SiteAddresss
    SiteABC
    1 Main Street
    Withington
    Manchester
    M20 1FT
    How do I split this address field across multiple new fields, eg:
    SiteName         AddressLine1      AddressLine2       AddressLine3     AddressLine4      Postcode
    SiteABS           1 Main Street      Withington           Manchester                                
    M20 1FT
    Thanks for all help
    Naz

    It is simple using TSQL, refer below example,
    ;with cte as (
    select 'site name' [address]
    union
    select 'address line 1' [address]
    union
    select 'address line 2' [address]
    union
    select 'address line 3' [address]
    select * from (select [address], row_number() over (order by address desc) rn from cte) x
    pivot
    (max([address]) for rn in ([1],[2],[3],[4])) pvt
    However if you need in SSRS itself, you can try using custom code to split the address string by char(10) or char(13) and then insert into an array. If the input parameter is 1 return the first address from the array, 2 return the second address and so on.
    Custom code can be called from the textbox expression as,
    =code.getAddress(Fields!Address, 1)
    Regards, RSingh

  • How to crate a page template for multiple page instances?

    Hello,
    When I use the Administration Portal to create a page with portlets in the Portal Resource Library, I can choose to use that page it in my portal. The problem is that I can use it only once. How can I crate a page template with portlets so I can use use it as a template for many page instances in one portal?
    I'm using Portal 8.1.6.
    Regards,
    Eirik

    Hey Dave, See the image below:

  • Multiple address number fields on a table

    Hi.  I have a Z table which had an address field ADRNR data element AD_ADDRNUM.  When maintaining the table via SM30, there is a function button "Address" to maintain this field.  I have just added a second address field ZCRED_ADRNR data element AD_ADDRNUM.  Now every time I try to maintain these addresses via the function button in SM30, I get a message "Address for object ... not found.  Do you want to create a new address?"  If I choose to create a new address, the address number in ADRNR is changed (eg from 0700264579 to 0700264580) and the address number in ZCRED_ADRNR appears as @NEW000000 - even though I only got one "Edit Address" popup.  If I look on table ADRC there is a record for the old address from field ADRNR (0700264579) is there, plus the new one (0700264580) but there is no record for ZCRED_ADRNR (@NEW000000).
    Could anybody tell me what I've done wrong?

    Looks like somebody created some sort of check in your table maintenance via the predefined events for table maintenance. So try to find out in which event this check is triggered and why.

  • I have lost the address field on the safari page

    I have lost the address field from the safari header. How do I restore this?

    I finallyfigured this one out. I couldn't get the customize screen to do anything until I tried to drag nothing. It worked. My first Mac was a SE and I thought I was pretty good on Macthink, but an additional direction would have helped immensly.

  • Multiple address books and/or Editing multiple address book entries

    Two questions from a neophyte to Address Book:
    1) Is there any way to make a "bulk change" to multiple entries in an address book (e.g. Add the text "Bob's friend" to the notes section of all the contacts in a selected group, or add the note "family" to a selected set of contacts?
    Perhaps there is a way to use Automator for this? or AppleScript?
    2) Is there a way to create multiple address books (short of creating multiple user accounts and logging in and out) to separate, for example business contacts from personal ones? Or perhaps is there a way to add a field to a template that allows one to categorize a contact as personal, business, school, retail, Sharon's friend, etc?
    Please lend me your ideas!

    Welcome to the discussions, Rangely.
    1) Yes, certainly, Applescript is ideal for this. See below for a simple sample. You can see which features of AB are accessible by using Script Editor to open AB's dictionary.
    2) Well, you could, but AB assumes its database is in ~/Library/Application Support/AddressBook, so you could have several parallel AB folders and swap them around as needed - but you can't do it from inside AB. It is much simpler to use the feature that suits the job - groups of contacts. As well as simplicity this has the advantage that details of someone who is business, school and Sharon's friend need only be stored once, as a contact can be in multiple groups.
    AK
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">--Skeleton AB Script
    --AK Mar 2007
    tell application "Address Book"
    repeat with Who in every person of group "Cousins"
    if note of Who exists then
    set note of Who to "Bob's Friend"
    end if
    end repeat
    end tell</pre>

  • Can I have data from Numbers automated to embed to Pages template?

    I am creating both a database and a document resource for a large archival project. I would like to know if there is a means to enter the data into a spread sheet in Numbers and them import each of the cells into a separate window in Pages.
    For example, I would have cells for contact info. Could I automate a Pages template to import that data into a window?
    The Pages documents would be a newsletter design to present the data of each person as a visually accessible version of the data.
    Some of the data would be:
    Current contact info.
    years at a location
    yes/no answers to some basic questions.
    etc.
    Other items in the Pages document would be imported directly - ie photos, etc.

    That is called a merge.
    Pages can merge data from both Numbers' tables and from AddressBook.
    Of the two AddressBook is usually less difficult, but obviously has less ability to create custom fields.
    You create the merge fields inside Pages with Menu > Insert > Merge Field > select which data and then use the Link Inspector to tell it which Application, document and what fields to merge from.
    You can not merge images and Pages merges will not do multiple merges per page eg if you have a set of data for Tom Jones and another for John Smith Pages will generate separate pages for each.
    You can have multiple references to Tom Jones on the same page, but not to both Tom Jones and John Smith. There are ways around this but it is a bit clumsy.
    Peter

  • Printing #10 Envelope - Return Address "off the page" & Address Very High

    I'm having trouble printing a #10 envelope.
    I have an Okidata B410d printer that Pages seems to subtitle a "Generic PCL Laser Printer."
    I went -- File / Open From Template Chooser / Word Processing / Envelopes / Classic Envelope
    I fill in the fields and the page attributes shows my printer, #10 Envelope and a landscape orientation.
    But when I feed through the bypass tray -- following the little icons telling me face down, flap left, ... -- the result prints the address two lines from the top of the paper and no sign of the return address field (if it existed it would be an inch off the paper to the top if you follow.
    So I figure there might be some way to change the setup / margins / headers / ...
    I managed to get something sorta acceptable by changing the default header from 0.95 cm to 4.2 cm -- it wouldn't let me go any more. The result had the return field hugging the top of the paper and the main address starting maybe 1 1/2" from the top. the envelope looks funny by I had to get something in the mail today.
    Now I'd like to make this right.
    Any advice?
    Thanks

    Who knows what I've done but after much trial and error (and more than a few of those pages cut to match a #10 envelope I seem to have something I can work with.
    I guess, as you said, there is some funny business between my printer and Pages.
    I'll detail the steps as much so I can retrieve if necessary. What I did:
    * Found a template that used a floating text box for the return rather than a header.
    * Changed the page size from the #10 default of 24.13 cm wide x 10.48 cm high to 24.13 cm wide x 24.0 cm high to "fool" it to working.
    * Left side margins unchanged
    * Set top margin to 11.5 cm and bottom to 0.0 cm
    * Dragged the return address floating text box so it is centred top to bottom on the envelope (a look I like)
    * Finished output has return address flush left, centred top to bottom and the address filed aligned with top line of address and return address fileds the same.
    * Saved as a template in my templates.
    * Tested that I could retrieve the template, type in info and print okay.
    Like I said ... it ain't elegant but now I can print out a proper looking #10 through the bypass feed of my Oki printer.
    Thanks for your help.

Maybe you are looking for

  • Can't send email from my personal pop3 account via my S5.  Receives mail fine.

    Hi, I have an S5 that I use to receive email from my personal email account (supplied by Primelink).  I can receive email fine, but can't send anything.  My SMTP server is mail.wgtest.com using port 465.  I am using K9 mail as my email app. I was tol

  • Message to Creative: suggesti

    Hello, It is a nice move from you to have firmwares that enable us (users of the Zen Micro and alike) to plug our MP3 players directly to a PC without having to install any drivers... BUT why isn't the player showing the music the way it has been org

  • AR postings with multiple business areas is not allowed

    Hi A user is trying to post a customer invoice with two line items/two profit centres and two business areas (BA) and is receiving the above error message. I feel that is is logical due to the question as to what BA the cusomer belongs to. However, I

  • CSS11501 commit vip redundancy script failure

    Hi all, recently when i run the commit vip redundancy script, i encountered the following error. This script has never failed in the past. Upon checking the backup CSS, i did notice that my most recent changes were actually synced. The following is t

  • Changing default JTable column headings

    Hi, I've created a simple JTable using the following constructor: JTable table = new JTable ( numRows, numCols); and I would now like to change the default column headings ("A", "B", "C" etc) to something else. I'm trying to use the following method