Is it possible to print a note from numbers spreadsheet

Hi I hope someone can help. Is it possible to print a note from numbers spreadsheet. Or is there any way I can type a ticket that I can print but that will automatically transfer the data to a spreadsheet in numbers?

How about the opposite direction. You have a table with a "key" field, like a ticket #.
You make another sheet that you type in the ticket number and it pulls up the proper data in the proper location for you to print. Just a print tempalte that fills out for the ticket already entered into the data table.
Jason

Similar Messages

  • Is it possible to print a JPanel from the application?

    Hello,
    Just a quick question: Is it possible to print a JPanel from your application? I have plotted a graph and I would like user to be able to print this with a click of a button (or similar)
    Thanks very much for your help, its appreciated as always.
    Harold Clements

    It is absolutely possible
    Check out my StandardPrint class. Basically all you need to do is
    (this is pseudocode. I don't remember the exact names of methods for all this stuff. Look it up if there's a problem)
    PrinterJob pd = PrinterJob.createNewJob();
    StandardPrint sp = new StandardPrint(yourComponent);
    pd.setPageable(sp);
    //if you want this
    //pd.pageDialog();
    pd.doPrint();You are welcome to have use and modify this class but please don't change the package or take credit for it as your own code.
    StandardPrint.java
    ===============
    package tjacobs.print;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.awt.print.*;
    import javax.print.PrintException;
    public class StandardPrint implements Printable, Pageable {
        Component c;
        SpecialPrint sp;
        PageFormat mFormat;
         boolean mScale = false;
         boolean mMaintainRatio = true;
        public StandardPrint(Component c) {
            this.c = c;
            if (c instanceof SpecialPrint) {
                sp = (SpecialPrint)c;
        public StandardPrint(SpecialPrint sp) {
            this.sp = sp;
         public boolean isPrintScaled () {
              return mScale;
         public void setPrintScaled(boolean b) {
              mScale = b;
         public boolean getMaintainsAspect() {
              return mMaintainRatio;
         public void setMaintainsAspect(boolean b) {
              mMaintainRatio = b;
        public void start() throws PrinterException {
            PrinterJob job = PrinterJob.getPrinterJob();
            if (mFormat == null) {
                mFormat = job.defaultPage();
            job.setPageable(this);
            if (job.printDialog()) {
                job.print();
        public void setPageFormat (PageFormat pf) {
            mFormat = pf;
        public void printStandardComponent (Pageable p) throws PrinterException {
            PrinterJob job = PrinterJob.getPrinterJob();
            job.setPageable(p);
            job.print();
        private Dimension getJobSize() {
            if (sp != null) {
                return sp.getPrintSize();
            else {
                return c.getSize();
        public static Image preview (int width, int height, Printable sp, PageFormat pf, int pageNo) {
            BufferedImage im = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
            return preview (im, sp, pf, pageNo);
        public static Image preview (Image im, Printable sp, PageFormat pf, int pageNo) {
            Graphics2D g = (Graphics2D) im.getGraphics();
            int width = im.getWidth(null);
            int height = im.getHeight(null);
            g.setColor(Color.WHITE);
            g.fillRect(0, 0, width, height);
            double hratio = height / pf.getHeight();
            double wratio = width / pf.getWidth();
            //g.scale(hratio, wratio);
            try {
                   sp.print(g, pf, pageNo);
              catch(PrinterException pe) {
                   pe.printStackTrace();
            g.dispose();
            return im;
        public int print(Graphics gr, PageFormat format, int pageNo) {
            mFormat = format;
            if (pageNo > getNumberOfPages()) {
                return Printable.NO_SUCH_PAGE;
            Graphics2D g = (Graphics2D) gr;
              g.drawRect(0, 0, (int)format.getWidth(), (int)format.getHeight());
            g.translate((int)format.getImageableX(), (int)format.getImageableY());
            Dimension size = getJobSize();
              if (!isPrintScaled()) {
                 int horizontal = getNumHorizontalPages();
                 int vertical = getNumVerticalPages();
                 int horizontalOffset = (int) ((pageNo % horizontal) * format.getImageableWidth());
                 int verticalOffset = (int) ((pageNo / vertical) * format.getImageableHeight());
                 double ratio = getScreenRatio();
                 g.scale(1 / ratio, 1 / ratio);
                 g.translate(-horizontalOffset, -verticalOffset);
                 if (sp != null) {
                     sp.printerPaint(g);
                 else {
                     c.paint(g);
                 g.translate(horizontal, vertical);
                 g.scale(ratio, ratio);
              else {
                 double ratio = getScreenRatio();
                 g.scale(1 / ratio, 1 / ratio);
                   double xScale = 1.0;
                   double yScale = 1.0;
                   double wid;
                   double ht;
                   if (sp != null) {
                        wid = sp.getPrintSize().width;
                        ht = sp.getPrintSize().height;
                   else {
                        wid = c.getWidth();
                        ht = c.getHeight();
                   xScale = format.getImageableWidth() / wid;
                   yScale = format.getImageableHeight() / ht;
                   if (getMaintainsAspect()) {
                        xScale = yScale = Math.min(xScale, yScale);
                   g.scale(xScale, yScale);
                   if (sp != null) {
                        sp.printerPaint(g);
                   else {
                        c.paint(g);
                   g.scale(1 / xScale, 1 / yScale);
                   g.scale(ratio, ratio);
             g.translate((int)-format.getImageableX(), (int)-format.getImageableY());     
            return Printable.PAGE_EXISTS;
        public int getNumHorizontalPages() {
            Dimension size = getJobSize();
            int imWidth = (int)mFormat.getImageableWidth();
            int pWidth = 1 + (int)(size.width / getScreenRatio() / imWidth) - (imWidth == size.width ? 1 : 0);
            return pWidth;
        private double getScreenRatio () {
            double res = Toolkit.getDefaultToolkit().getScreenResolution();
            double ratio = res / 72.0;
            return ratio;
        public int getNumVerticalPages() {
            Dimension size = getJobSize();
            int imHeight = (int)mFormat.getImageableHeight();
            int pHeight = (int) (1 + (size.height / getScreenRatio() / imHeight)) - (imHeight == size.height ? 1 : 0);
            return pHeight;
        public int getNumberOfPages() {
              if (isPrintScaled()) return 1;
            return getNumHorizontalPages() * getNumVerticalPages();
        public Printable getPrintable(int i) {
            return this;
        public PageFormat getPageFormat(int page) {
            if (mFormat == null) {
                PrinterJob job = PrinterJob.getPrinterJob();
                mFormat = job.defaultPage();
            return mFormat;
    }

  • HT2486 How do I print the notes from a contact in my address book?

    Here is the whole question.   I am still adjusting to life without my Palm desktop app
    How do I print the notes from a contact in my address book?  I used to do this all the time with my Palm desktop app and would like to be able to do this, as I use the notes field for lots of important info.  thanks.

    Print > Attribues > checkmark notes?

  • I can print from my PC to my wireless printer but not from my ipad. What should I do?

    I can print from my PC to my wireless printer but not from my ipad3.  How do I cure this problem?

    If it's not an Airprint enabled printer, you need apps like:
    http://itunes.apple.com/sg/app/print-n-share-for-documents/id301656026?mt=8&ls=1
    http://itunes.apple.com/sg/app/printcentral/id366020849?mt=8&ls=1

  • How can I print sheet titles from Numbers?

    how can I print sheet titles from Numbers?

    Hi Rick,
    "Believe it or not, Numbers just doesn't work as well for me as Excel."
    I don't find that difficult to believe. If you need the functions supported by Excel and not by Numbers, then Excel is the tool to use. OTOH, your finding of 'more flexible' translates, at least in part to 'more familiar.' All applications, Excel included, force you into certain paths.
    Regards,
    Barry

  • How can I print address labels from numbers spread sheet

    How can I print address labels from numbers spread sheet

    CAB,
    The 5163 template has the following dimensional specs:
    Dimensions & Info
    Length: 4.00000"          Height: 2.00000"
    Top Margin: 0.50000"          Bottom Margin: 0.50000"
    Left Margin: 0.18000"          Right Margin: 0.18000"
    Hor. Spacing (gutter): 0.14000"          Vert. Spacing (gutter): 0.00000"
    Intended Use: Mailing Labels, Shipping Labels, Address Labels
    There's a great vendor site with this data readily available, better than the Avery site in my opinion. But, you can get the same info in the Contacts Print dialog pane.
    You can grab a template matching these dimensions from that vendor site, Copy the table after opening the Word Template in Pages and drop the into a blank Numbers Sheet.
    I found that Sheet side margins of 0.15" worked better than 0.18. For some reason the table wanted to flow to the next page to the right with 0.18". Turning off the Headers and Footers and setting Top and Bottom Margins to 0.5" worked well. These adjustments are made in the Sheets Inspector.
    So, that will put the template you specified into a Numbers document and you can print labels properly aligned from there. Since your problem statement is a bit lacking in detail, that's all I can offer you at this point.
    Jerry

  • Is it possible to take a chart from numbers and put it into keynote instead of remaking it in keynote?

    Is it possible to take a chart from numbers and put it into keynote instead of remaking it in keynote?

    Take a screenshot of the chart and use that in Keynote, if you can't find another way.

  • Is it possible to print mailing labels from an excel spreadsheet in Macbook pro?

    How do you print mailing labels from an excel spreadsheet on a macbook pro? Is it possible. I can only find information about printing labels from your address book.

    Why not ask in MacBook Pro forum, or SL, or even MS community or MacTopia.
    Office 2011? pretty easy to setup mailing, just click on ribbon tab, and use the built in help.
    MacBook Pro
    Mail and Address book
    http://www.bing.com/search?q=Excel+mailing+labels

  • Is it possible to print text messages from an iPhone?

    Is it possible to print text messages form an iPhone?

    Macbook354 wrote:
    Yeah, unless you want to deal with the pain of trying to get you messages to your computer, you will have to take a screenshot (by taping the home and lock button at the same time).
    If you want to print a screenshot, it will be in the photos app to print ( click the share button and click print).  If you so not have a AirPrint printer, there are third-party apps for computers like fingerprint (look it up) that can make a fake AirPrint printer.
    I want to add something more.
    In most cases, you would need to use a paid third party tool to export and then print your iPhone text messages on your computer. If you have a low amount of messages you want to print you can also take prints creens of each message, then transfer the photos to your computer and print from there. This and more methods of printing iPhone text messages here: How to Print Text Messages from iPhone?

  • HP 7640 web services disabled and I can only print locally, not from the net !

    Web Services Test Reslults:"No problems found"Router: Verizon Quantum gatewayPrinter is connected via Wi-Fi and printing can be done through the router or directly via Wi-FiBoth Router @ 192.168.1.1 and printer panel report printer IP 192.168.1.161, MAC address 34.64.a9.44.ff.aaAND . . . under current configurationWeb services : disabledSo . . .How do I get this pos working properly ?HP website provides NO SUPPORT, just a run-a-round.---  

    Hey ,  Welcome to the HP Support Forum.  I see that you're unable to use ePrint or enable webservices with your HP ENVY 7640 e-All-in-One Printer.  I would like to help.  Have you tried the basic ePrint/webservices setup method as recommended by HP?  If not, give that a shot first.  If this is not new to you please read on, I have some more suggestions that might enable this feature for you.   I recommend you set a Manual DNS on your printer.  Here's how:  Click on the HP ENVY 7640 icon on your PC desktop (note that I've used screenshots for a different printer, but the steps are essentially identical) to access the HP Printer Assistant.  Click on the Embedded Web Server link (EWS) and then click on the network tab as indicated below:   Next, click Wireless and then IPV4 Configuration as indicated below:     Next, click on Manual DNS Server and input the numbers exactly as indicated below, clicking on Apply to complete this aspect of your setup:   For the next step, you can use the EWS 'Webservices' tab to enable webservices/ePrint or enable from the printer's front panel by touching the  icon.  Touch OK to allow this feature to activate and also to allow for automatic printer updates.   If you were able to complete the above-noted steps without issue, you will be ready to send your printer ePrint jobs. For more information on how to setup a custom ePrint address click here.  If you're an Android or iOS device user, click here for more information on how to use the HP ePrint app.  In its most basic iteration, you can send your printer ePrint jobs from any web-ready device by emailing content you want to print directly to your printer's @hpeprint.com address.  Please let me know the result of your troubleshooting by responding to this post.  If I have helped you resolve the issue, feel free to say "You rock!" by clicking the 'Thumbs Up' icon below and clicking to accept this solution. Thank you for posting in the HP Support Forum.  Have a great day!

  • Is it possible to print the info. from the help window. (ex. how to create a smart list)

    is it possible to print the info. for the help window. (ex. how to create a smartlist... i tunes)

    Yes, click the gear icon and select print.

  • Is it possible to delete a template from numbers?

    I need to delete a template from numbers and can't seem to find a way to do it? Anyone else have this problem?

    I'll assume you're using Lion or maybe Mountain Lion. Numbers stores those you created & saved as templates in (your account) > Library > Application Support > iWork > Numbers > Templates > My Templates. The user's Library is hidden in Lion but it is easy to open. In Finder, hold down the Option key while clicking on the Go menu & your user Library will appear about halfway down the list.

  • Applescript: Make iCal entry from Numbers spreadsheet

    I use a spreadsheet to book all my photography shoots. The columns (name, phone, email, job date, job time, job address, job city, services, notes) are inputted each time a client calls to book a shoot.Once they are booked, I create a new iCal entry for the "job date" with the title name being a slimmed down version of the services (ie, the client might have wanted photos, virtual tours, and prints, but for on site work, given that I will not be printing anything, I leave out the print from the title). So the final title might look like this: "photos, virtual tours @ 3pm". I also add the full address including the city into the iCal "location" field (just below the title field). Then I'll make sure that the date and time correspond to the spreadsheet. Next, I'll set it to a calendar I have made for these bookings. Finally, I'll add the services and notes to the "note" field at the very bottom of the iCal entry. Then click DONE.
    Can someone help me write a simple script that would read a preselected row in the numbers spreadsheet and, once initiated, would create a new iCal entry? Thank you.

    Thanks John. Yes, so I edited it a bit and made a few minor changes (basically adding some info to the notes section in the iCal entry). I've posted the code below. A couple minor tweaks would make this perfect: First, I'd prefer to simply selected one of the cells on a given row and then run the script--at that point the script would know to copy that entire row. I know this is possible because I have a script that does this... I'm just not sure how to integrate that part of the script with yours. I've posted the script below yours.
    Second, I'd like iCal to open the newly added entry so I can have a quick review of it. Currently there's no indication that it's been added and, which iCal does appear to initiate (if it was closed down), it does however remain in the background.
    Your script (with some mods):
    set myCal to "TEST" -- calendar name
    set myLength to 2 -- hours
    set myItems to my cjmTIDs(the clipboard, tab)
    if (count of myItems) is less than 12 then return
    set jobDate to date (item 4 of myItems)
    set timeArray to my numberFromHourText(item 5 of myItems)
    set hours of jobDate to (item 1 of timeArray)
    set minutes of jobDate to (item 2 of timeArray)
    set jobEnd to jobDate + (myLength * hours)
    set myTitle to (item 1 of my cjmTIDs((item 11 of myItems), "prints"))
    set myNotes to "Client: " & (item 1 of myItems) & return & return & "Tel: " & (item 2 of myItems) & return & return & "Services: " & (item 11 of myItems) & return & return & "Notes: " & (item 12 of myItems)
    set myURL to (item 3 of myItems)
    set theAddress to (item 6 of myItems) & ", " & (item 7 of myItems) & ", " & (item 8 of myItems)
    tell application "iCal"
              set myNewEvent to make new event at the end of events of calendar myCal with properties {start date:jobDate, end date:jobEnd, summary:myTitle, location:theAddress, url:myURL, description:myNotes}
    end tell
    on cjmTIDs(theText, theDelim)
              set my text item delimiters to theDelim
              set myList to text items of theText
              set my text item delimiters to {""}
              return myList
    end cjmTIDs
    on numberFromHourText(theText)
              set theParts to my cjmTIDs(theText, ":")
              if (count of theParts) is 2 then
                        set myHours to item 1 of theParts as number
                        set myMins to ((characters 1 thru -4 of item 2 of theParts) as text) as number
              else
                        set myHours to ((characters 1 thru -4 of theText) as text) as number
                        set myMins to 0
              end if
              if character -2 of theText is "p" then set myHours to myHours + 12
              return {myHours, myMins}
    end numberFromHourText
    The other script that I mentioned (the one that knows to copy the entire row by just selecting a cell):
    set theTemplate to POSIX file "/Users/Peter/Library/Application Support/iWork/Numbers/Templates/My Templates/TEST.nmbtemplate"
    tell application "Numbers 09"
              tell table 1 of sheet 1 of front document
                        set theValues to value of cells of row 1 of selection range
              end tell
      open theTemplate
              tell table 1 of sheet 1 of front document
                        set value of cell "A1" to item 1 of theValues
                        set value of cell "A2" to item 2 of theValues
                        set value of cell "A3" to item 3 of theValues
              end tell
              tell table 2 of sheet 1 of front document
                        set value of cell "B1" to item 6 of theValues
                        set value of cell "B2" to item 7 of theValues
                        set value of cell "B3" to item 4 of theValues
                        set value of cell "B4" to item 11 of theValues
                        set value of cell "D1" to item 38 of theValues
              end tell
              tell table 3 of sheet 1 of front document
                        set value of cell "A2" to item 11 of theValues
                        set value of cell "B2" to item 13 of theValues
              end tell
              tell table 5 of sheet 1 of front document
                        set value of cell "B2" to item 34 of theValues
                        set value of cell "B3" to item 14 of theValues
              end tell
              tell table 7 of sheet 1 of front document
                        set value of cell "B3" to item 30 of theValues
              end tell
              set R to display dialog "Save a PDF version of the invoice?" buttons {"No", "Yes"} default button 2 with icon 1
              if button returned of R is "Yes" then -- GUI Scripting:
                        tell application "System Events" to tell process "Numbers"
      click menu item "Print…" of menu 1 of menu bar item "File" of menu bar 1
                                  set theWindowName to name of window 1 whose subrole is "AXStandardWindow"
                                  tell sheet 1 of window theWindowName
                                            if value of checkbox -1 is 0 then click checkbox -1 -- to show all the settings
                                            set value of text field 3 to "1" -- number of copies = 1
      click radio button "From:" of radio group 2 -- button “From:”
                                            set value of text field 2 to "1" -- from page 1
                                            set value of text field 1 to "1" -- to page 1
      click radio button 2 of radio group 1 -- current sheet
                                            if value of checkbox 2 is 1 then click checkbox 2 -- to not include a list of all formulas
      click menu button "PDF"
                                            click menu item "Save as PDF…" of menu 1 of menu button "PDF"
                                  end tell
      keystroke "Invoice" -- document name
      keystroke "d" using command down -- save to desktop
                                  set value of text field 3 of group 1 of window 1 to "Invoice" -- title
                                  set value of text field 4 of group 1 of window 1 to "Stone Home Photo & Video" -- author
                                  tell window "Save"
                                            click button "Save"
                                            if sheet 1 exists then click button "Replace" of sheet 1
                                  end tell
                        end tell
              end if
      close front document saving yes
    end tell

  • Need to print Header Note from Shipment

    Hi gurus
    I need to print the Header Note text from shipment.
    So far I have the following code:
    Include &xxxxxx-tdname&  object vttk id 0003 paragraph IT
    The X's are what I need to define.  Is it VBDKL (although that is Header view for Delivery note) or is there a structure specific to shipment?
    Thx,
    RM

    try if this link helps you.
    http://blogs.oracle.com/xmlpublisher/2009/06/conditional_headers.html
    Thanks,
    Shilpa

  • U00BFIs it possible to print a .TIFF from SAP?

    I am developing CRM, and in the CRM Activities it is possible to attach files of different types (.TIFF, .XLS, .DOC, etc). The client wants the application to print directly the document without their having to open a new application. For example, they want to print a .xls without opening the excel (at least manually). Is this possible?
    Thanks in advance!
    Best regards,
    Paola del Giorgio

    Yes,  search forum for OLE.
    Regards,
    Rich Heilman

Maybe you are looking for

  • SAML2.0 for web services - sender-vouches scenario

    We would like to configure this scenario using SAML2.0 assertion tickets. We are on ECC 6 EhP6. Configuration in SAML2 has been completed - no WS security policy has been configured in order to support the sender-vouches scenario. WSS_SETUP has run t

  • High Availability - Active Passive setup for EBS Database

    Hello Gurus, We have the below environment: Oracle Applications - 12.1.3 Oracle Database - 11.2.0.3 OS - Oracle Enterprise Linux 5.7 I would like to know how to achieve high availability (*Active/Passive*) for the database. We don't want to go with R

  • My MacBook keeps beeping 3 times when I try to turn it on and  it won't go on

    Hi I have a macbook ?2008 Snow leopard Recently it has become full and has been shutting down unexpectantly. Now when I try and turn it on, it continually beeps 3 short then 3 long I don't know what to do. Any ideas. I'm worried I will lose all the f

  • Which method instead of getCustomDatum?

    in the sample application the method rs.getCustomDatum is used, this method is deprecated, isn't it? which method can i use instead? where can i find the documentation of the Java Class OracleResultSet?

  • Making a new connector

    How hard is it to make a new connector to integrate a third party CRM (Deltek Vision CRM) into GroupWise for calendar, contacts, etc.? Where would a non-programmer go for help with this?