How to keep location in a table persistent when switching between pages

Hi -
How would I keep my last location persistent in a table when switching between pages? If I am on cell X and switch to another page, when returning to the previous page, I return to the top of the table. This can be very annoying when trying to find the same location in a large table (or even in a small one).
Thanks.

If by "page" you mean "sheet", you can do it. To get back to the same place you were in the other sheet, click on the sheet in the sidebar (the list of sheets/tables/charts/etc on the left). Don't click on the table, click on the sheet.

Similar Messages

  • HT204409 how can i locate my mini ipad even when its not connected to the internet

    how can i locate my mini ipad even when its not connected to the internet

    Is it lost or stolen?
    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    What to do if your iOS device is lost or stolen
    http://support.apple.com/kb/HT5668
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    iCloud: Lost Mode - Lock and Trace
    http://support.apple.com/kb/PH2700
    iCloud: Remotely Erase your device
    http://support.apple.com/kb/PH2701
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    What NOT to do if your iPhone or iPad is lost or stolen
    http://www.tomahaiku.com/what-not-to-do-if-your-iphone-or-ipad-lost-or-stolen/
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • How to keep first form window state maximize when you called the second for

    HI,
    how to keep first form window state maximize when you called the second form ?
    Thanks

    Here is sample of doing this.
    Chris

  • How to keep file name in print queue when printing crystal report

    We are using VB .Net 2003 + Crystal Report 2008 SP2 up to Fix Pack 2.6
    When the VB program spools crystal report files to print queue, the print queue only shows "Crystal Report" for each document.  How to keep the original file name?  In the past when we were using Crystal Report 11, the original file name can be shown in the print queue.
    Please help because it's so important for operation to see which report is failed in printing when reports are printed in batch.
    Thanks

    Hello,
    Set the PrintOption.JobTitle value for the print job. Here's C# code on how to:
                   System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();
                CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions rasPROpts = new CrystalDecisions.ReportAppServer.Controllers.PrintReportOptionsClass();
                CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions newOpts = new PrintOptionsClass();
                   pDoc.PrinterSettings.PrinterName = cboCurrentPrinters.Text;          
                   rasPROpts.PrinterName = cboCurrentPrinters.Text;               
                   rasPROpts.PaperSize = (CrPaperSizeEnum)
                        pDoc.PrinterSettings.PaperSizes[cboCurrentPaperSizes.SelectedIndex].Kind;
                // this sets the name of the print job
                rasPROpts.JobTitle = "MYPrintJob";
                   rptClientDoc.PrintOutputController.PrintReport(rasPROpts);
                   MessageBox.Show("Printing report.", "RAS", MessageBoxButtons.OK,MessageBoxIcon.Information );
    Thank you
    Don

  • How to keep user enter value in textbox even if JSP page get refreshed.

    Hi Experts,
    In My JSP Page i have one text(customer Name) and number of checkboxes and radio buttons.
    My Problem is:
    if user enter some value in Text Box and after that user clicks on some radio button becouse of some action on radio button page get refresh and also the value enter by user in text box get vanish.
    I want keep text box value as it is even if page get refreshed becouse of some action.
    Is it any setting in Strust framework for this.
    I am using Struts Framework.
    Please let me know if need more information

    Sorry, I don't clearly understand the question and the horrible code (Java code doesn't belong in JSPs) doesn't make it more easy to understand.
    Best what I can guess is that you need to learn about passing request parameters/attributes in JSP and the possibilty of storing attributes in the session. And based on the code, also learn how to separate the data, business and presentation layers properly.

  • How do I keep the page format from changing on my IPAD as I switch between pages

    How do I keep my page format from changing on my IPAD as I switch from page to page.

    Can you provide more information. Switching from page to page in what app? How if the format changing?

  • How to insert data into a table only when data has changed its value (when compared to the previous inserted value)

    I wish to insert data into a table only when the value of the inserted data has changed. Thus, in a time series, if the value of the data at time, t-1, is 206 then if the data to be inserted at time t is 206, then it is skipped (not entered).
    If the value of the data at time t+1 is 206, it is skipped also; until the value changes, so if the value at t+1 was 205, then that would be inserted, and if at time t+2 the data is 206, it would be inserted too.
    What is the best way to do it without increasing overheads?

    This view works:
    SELECT
    i.IDNO,i.[Date],i.[Level]
    FROM
    mytable i
    INNER
    JOIN mytable
    d
    ON
    d.IDNO
    = i.IDNO-1
    WHERE
    i.[Level]
    <> d.[Level]
    on this mytable below.  A trigger could be quite useful here although I am cautious using them. However I wish to avoid the overhead by not having a temp table (which could be sizable).  mytable below
    should give 3 lines. The IDNO is an identity column.
    IDNO
    Item
    Date
    Level
    1
    X24
    12/23/13 10:41
    22996
    2
    X24
    12/23/13 10:41
    22996
    3
    X24
    12/23/13 9:21
    23256
    4
    X24
    12/23/13 9:21
    23256
    5
    X24
    12/23/13 9:22
    23256
    6
    X24
    12/23/13 9:22
    23256
    7
    X24
    12/23/13 9:22
    22916

  • How to keep navigation with in the portal when accessing third party applic

    Hi
      I am trying to integrate Peoplesoft applications into portal.I am able to access the PS applications,but when i try to navigate through the Peoplesoft pages,page is not opening in Content area.Peoplesoft page is opening in the browser rather than in the content area.
    As for my concren in navigation at oneplace its leaving the portal environment to other Ps serevers environment.As PS link is pointing to PS server.
    How to overcome this problem.I want to open all peoplesoft pages within the portal content area.
    regards
    Usman

    Anyone to answer this question.Urgent.
    regards
    Usman

  • How to switch between pages in a JTabbedPane

    I hava form with a JTabbedPane whit 5 "pages" om page 1 there is a button that when pressed i want to switch to page 5 and display that content
    I have tried the setSelectedIndex method but i does not work.. Any tips?

    How about the source code?
    It must be buggy somewhere! There is no problem with those methods in my example.
    Try this one:
    package tabs;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    * <p>�berschrift: </p>
    * <p>Beschreibung: </p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Organisation: </p>
    * @author Florian Fray
    * @version 1.0
    public class TabExample extends JFrame {
    private JPanel root = new JPanel();
    JTabbedPane jTabbedPane1 = new JTabbedPane();
    JPanel jPanel1 = new JPanel();
    JButton jButton1 = new JButton();
    JPanel jPanel2 = new JPanel();
    JButton jButton2 = new JButton();
    FlowLayout flowLayout1 = new FlowLayout();
    public TabExample() throws HeadlessException {
    try {
    jbInit();
    pack();
    show();
    catch(Exception e) {
    e.printStackTrace();
    public static void main(String[] args) throws HeadlessException {
    TabExample tabExample1 = new TabExample();
    private void jbInit() throws Exception {
    setDefaultCloseOperation(JDialog.EXIT_ON_CLOSE);
    this.setState(Frame.NORMAL);
    this.setTitle("Tabbing around");
    setContentPane(root);
    jButton1.setText("to Tab 2");
    jButton1.addActionListener(new TabExample_jButton1_actionAdapter(this));
    jButton2.setText("back to Tab 1");
    jButton2.addActionListener(new TabExample_jButton2_actionAdapter(this));
    jTabbedPane1.setMinimumSize(new Dimension(155, 83));
    jTabbedPane1.setPreferredSize(new Dimension(155, 83));
    root.add(jTabbedPane1, null);
    jTabbedPane1.add(jPanel1, "jPanel1");
    jPanel1.add(jButton1, null);
    jTabbedPane1.add(jPanel2, "jPanel2");
    jPanel2.add(jButton2, null);
    void jButton1_actionPerformed(ActionEvent e) {
    jTabbedPane1.setSelectedIndex(1);
    void jButton2_actionPerformed(ActionEvent e) {
    jTabbedPane1.setSelectedIndex(0);
    class TabExample_jButton1_actionAdapter implements java.awt.event.ActionListener {
    TabExample adaptee;
    TabExample_jButton1_actionAdapter(TabExample adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.jButton1_actionPerformed(e);
    class TabExample_jButton2_actionAdapter implements java.awt.event.ActionListener {
    TabExample adaptee;
    TabExample_jButton2_actionAdapter(TabExample adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.jButton2_actionPerformed(e);
    }

  • How to prevent video playback from getting paused when switching to another tab on Firefox for Android?

    In Firefox for Android 27.0, if you play video in one tab and while it's playing you switch to another tab, the video gets paused. I want the video to continue to play while I'm viewing another tab (so I can at least hear its sound!).
    How can I do that?
    How can I prevent Firefox for Android from pausing video playback when switching to another tab?
    Thank you very much.

    Hi hamid_ss,
    Currently Firefox for Android does this by default with embedded players. Some sites go automatically to full screen too which may be what you are running into. Try it.

  • How do I disable the cube effect when switching between accounts?

    Hello, I have a friend who wants to turn off the animated cube effect that happens when they switch between theirs and their wife's accounts. After a lot of googling I am not having much luck finding out how to do it. Does anyone here know?
    Interestingly, you can see what a difference it makes by loading "Quartz Debug" and unchecking "Enable Quartz Extreme" - makes fast user switching really fast! But I don't want to permanently disable Quartz Extreme, I just want to turn off this one animation.

    You can't disable the animation, as it is a part of the system/account controller as far as I know.

  • How to keep EJBs and Database Tables in sync ?

    Hello dear fellow JDeveloper 11 users,
    after i created some EJB 3 entity beans and some offline database table definitions
    i would like to get them linked to each other, and to keep them in sync.
    where do i do that? cant find it, have i missed it?
    thanks for any tips,
    thomas
    thomas.nagel (at) materna.de

    Both questions are not JDev 11 specific and work in JDev 10.1.3.x also.
    To keep entities in sync you have tell the underlying orm layer when to refresh its cache. One way for doing this is to use hints in the NamedQueries like this one
                    hints =
                    { @QueryHint(name = TopLinkQueryHints.REFRESH, value = HintValues.TRUE)Linking EJBs could be easily done (ie automagically during EJB from Tables creation) if the underlying datamodel uses foreign keys relationships.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to get data from a table in a condition between twomonth

    hai friends
    I have a query that is i want to get data from a table based on a condition between two months in a format of char column
    Ex
    I have a column called from_month in the format of 'mon/yyyy'(already converted from date')
    then the second column is to_month in the same format 'mon/yyyy'
    now i wiil select from_month and to_month like
    from month jan/2009
    to month mar/2010
    how to use between of two months in the format of char.Please tell me how to get two different month between data.

    Hi,
    This may be of help.
    Remember Pointless has made a point ;) (worth millions)
    If possible , DO NOT store dates as strings or numbers.Let dates be dates.
    WITH dat AS
    (SELECT ' THIS IS JAN' x,to_char(to_date('01-JAN-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS FEB' x,to_char(to_date('01-FEB-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS MAR' x,to_char(to_date('01-MAR-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS APR' x,to_char(to_date('01-APR-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS MAY' x,to_char(to_date('01-MAY-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS JUN' x,to_char(to_date('01-JUN-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS JUL' x,to_char(to_date('01-JUL-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS AUG' x,to_char(to_date('01-AUG-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS SEP' x,to_char(to_date('01-SEP-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS OCT' x,to_char(to_date('01-OCT-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual UNION
    SELECT ' THIS IS NOV' x,to_char(to_date('01-NOV-2009','DD-MON-YYYY'),'mon/yyyy') y FROM dual)
    SELECT * FROM dat
    WHERE to_date(y,'mon/yyyy') BETWEEN to_date('01 jan 2009','dd mon yyyy') AND to_date('01 mar 2009','dd mon yyyy')Cheers!!!
    Bhushan

  • How to keep the SAME position of layout on left & right pages when adding a page?

    A little background first before I ask the question:
    I've been converting a PowerPoint document to the InDesign format, and adding pages as I go through by duplicating a page in order to keep the top description text in the same position at the top left hand side. The document is over 110 pages- more pages will be added soon, and some pages deleted. Basically the presentation will be printed as a book, and the client we are designing this presentation for sent us the master pages for the layout.
    The issue I'm now having: I had to delete an odd number of pages which caused a shift of the layout of pages throughout the document after the pages I deleted. I figured that the right hand page was not aligned the same as the right hand page, so I measured in the same distance from the left edge on both pages and made the adjustments. But then when I added a page, the alignment shifted again.
    Is this an issue with the master pages? Or is this another issue? Any idea how to fix this so that the pages are aligned the same whether I add or delete a page? I've included two screen grabs to better illustrate what is happening:
    I would be very grateful for any help you may be able to offer on this, thank you in advance.
    Vera

    Those are your margin guides, and your client evidently expects the margins to be larger on the outside of the page than at the spine. Putting the text frame that says Main Building... on the master page will not only save you having to enter it each time, but will let you put it where it should be and have it stay there when pages switch sides. Your images are going to seem to shift, too, unless they are centered on the page on the horizontal axis.
    I'm sensing you really have little or no experience using ID, and some basic training would probably help you quite a bit. I'll recommend Sandee Cohen's Visual Quickstart Guide to InDesign -- best book out there for beginners.

  • How to keep an image "in place" within a document using Pages?

    Here's what I want solved. When I position an image (like a jPeg photo) within a document I take a great amount of care as to how it looks in the layout. BUT, if I add a new line of text ABOVE the image, all the text moves, but the image stays in place. When the text above moves down, any kind of "art direction" is lost.
    Yes, I know there is a way to "LOCK" the image, but that doesn't solve this issue. The formatting still moves all the text and the image is stuck, LOCKED or UN-LOCKED.
    I want to know if there is a way to KEEP THE IMAGE in place within the text. I want to be able to edit above the image and not have the headache of needing to move the image every single time I change something above it.
    Does this make sense?
    I have to assume there is a way to do this, I just haven't figured it out.
    I am using Pages 09.
    thanks,
    Mike C

    (a little bit more)
    This text below is from the Pages help menu, but (sadly) This does NOT solve my problems.
    Locking and Unlocking Floating Objects
    You can lock floating objects to avoid inadvertently moving them as you work. Inline objects cannot be grouped or locked.
    After you lock individual or grouped objects, you can’t move, delete, or modify them in any way until you unlock them. However, a locked object can be selected, copied, or duplicated; when you copy or duplicate a locked object, the new object is also locked.
    To lock a floating object:
    Select the objects you want to lock, and then choose Arrange > Lock.
    To unlock a floating object:
    Select the objects you want to unlock, and then choose Arrange > Unlock.

Maybe you are looking for

  • Is there a way to create something like macros in Motion?

    We have a project that requires complex animations on many different objects, which are all similar, but require variations and occur at different times, and are looking for the most efficient method to manage it all. We were wondering if we could ge

  • Null pointer Exception in NodeCMIModelClassWrapper.java:46

    Hi all, I created a test program to see how OVS works. I did all the steps as explained in document "Web Dynpro Valuehelp Using Object Value Selector.pdf" but instead of use BAPI_FLIGHT_GETLIST, I change to BAPI_FLCUST_GETLIST and I did all the chang

  • Any way to access ddimage forensic images?

    Hi - I've been given a series of drives that supposedly contain images of a bunch of Mac HD's. The drives all contain folders and files named like this: qhq005qla1 qla51ddimage.001 qla51ddimage.002 qla51ddimage.003 qla51ddimage.029 Each drive has two

  • My Mac turns on however I'm unable to open or click on any applications, please help me.

    I've shut down my computer numerous times hoping the problem will cease to exist but to no avail. If I attempt to click anything the color ball starts spinning and doesn't stop.

  • HD crash - any hope?

    Today I noticed my computer was running slower than usual, suspiciously so. I decided to run first the apple hardware test, which showed no problems, then I ran disc utility and repaired permissions, and repaired disk, hoping that would help. On star