Can't get alternating rows style to work

I have a spreadsheet in Numbers for iPad that I'm trying to style with alternating row colors. I don't even really care if its just gray and white, but I would like any form of alternating shades since I have a ton of data in one spreadsheet. It seems that no matter what I do on the settings, though, I can't get it to work. I tried changing the background of all the cells to no fill, then to white, then to gray...none of that seemed to make any difference. I also tried to select one of the pre existing styles and tried to apply that to my table and that also didn't seem to work. If anyone out there has any suggestions I would really appreciate it.
Thanks

Password for what?

Similar Messages

  • How Get Alternating Row Colors To Work?

    I've searched this forum, searched online, and followed the directions in the Numbers 3.0 Help, but I just can't get the Alternating Row Colors function to work.  I'm using an iMac and a new Mac Mini, both running Mavericks, on a spreadsheet converted from Numbers '08.  I've seen several screenshots of tables in discussions on this forum that seem to have Alternate Row shading; presumably they were done with Numbers 3.0. So apparently, it can be done.  Need Help!

    Vistan wrote:
    Now I see it!  I did not have any of the Table Style boxes in the upper right cortner of the creen selected...when I choose one, the alternate row colors sudenly pop up.  I'm now experimenting with the Grid Lines and Header &Footer selection buttons.
    Vistan
    Vistan,
    I'm about as sure as I can be that Table Style boxes having being clicked has nothing to do with the Checkbox for Alternating color rows. I've been wrong before, but I can't grasp the logic on this one, and it doesn't happen here the way you describe.
    Jerry

  • I can't get iphone screen mirroring to work via my  apple tv

    I have ios5 on my phone, and an apple TV. I can not get the mirroring funcion to work on the Apple TV. I double click the home button on the phone, slide the bottom row of aps all the way to the right, and click on the Air Play symbol, but no luck. Any ideas?

    Mirroring is working on my iPad2 and iPhone4S (IOS5) but not on my iPad (ios5) or iPhone 3G (IOS4).
    As I understand it, mirroring is restricted to iPad2 and iPhone4S on ios5.
    Hope that helps.
    Mort

  • Can't get jdbc MySQL transactions to work

    Hi
    I'm trying to get a series of MySQL statements to work as a transaction but I can't get the transaction side to work.
    I have the tables set up as InnoDB to support transactions.
    My current code is written like this (from after the connection is opened). This method throws SQLException.
    Statement statement = connection.createStatement();
    String sql = "BEGIN;";
    int i = statement.executeUpdate(sql);
    // insert row into TABLE persons
    sql = "INSERT INTO persons SET " +
                  "personID='" + p.getPersonID() + "', " +
                  "firstName='" + p.getFirstName() + "', " +
                  "lastName='" + p.getLastName() + "', " +
                  "emailAddress='" + p.getEmailAddress() + "', " +
                  "password='" + p.getPassword() + "', " +
                  "approvalRating='" + p.getApprovalRating() + "';";
    i = statement.executeUpdate(sql);
    // get the address object associated with p
    Address a = p.getAddress();
    // insert row into TABLE addresses
    sql = "INSERT INTO addresses SET " +
                  "personID='" + a.getPersonID() + "', " +
                  "address1='" + a.getAddress1() + "', " +
                  "address2='" + a.getAddress2() + "', " +
                  "town='" + a.getTown() + "', " +
                  "city='" + a.getCity() + "', " +
                  "county='" + a.getCounty() + "', " +
                  "country='" + a.getCountry() + "', " +
                  "postcodeArea='" + a.getPostcodeArea() + "', " +
                  "postcode2='" + a.getPostcode2() + "', " +
                  "phoneHome='" + a.getPhoneHome() + "', " +
                  "phoneWork='" + a.getPhoneWork() + "', " +
                  "phoneMobile='" + a.getPhoneMobile() + "';";
    i = statement.executeUpdate(sql);
    sql = "COMMIT;";
    int i = statement.executeUpdate(sql);When the SQLException is caught, I want to execute a ROLLBACK
    I can't seem to get this to work. What am I doing wrong?

    1.) Which exact exception do you get and at what line?
    2.) You should really use PreparedStatements and set the parameters there instead of building a dynamic SQL string, because that's greatly in danger of beeing attacked with a SQL injection attack. See http://en.wikipedia.org/wiki/SQL_injection for details.
    3.) You don't need to execute "COMMIT;" as a SQL command, there's connection.commit() for this (make sure that auto-commit is off, using connection.setAutoCommit() if necessary).
    Edit: 4.) You don't need to do "BEGIN" as well (what gave you the idea, by the way?)

  • I can not get my map link to work!!!

    I can not get my map link to work!!!
    The image it is on is surrounded by fixed images and is in <div id="display"> (see code below). Map links work just fine on the images that are in the fixed divs, but not the 'display' div.
    Can someone help?
    Code:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Mobile Phone</title>
    <style type="text/css">
    body {
    margin: 0; 
    #wrapper {
      margin: 0 auto;
    top:0px
    #phone {
      width: 400px;
      margin: 0 auto;
      font-size:0;
    #top {
      position:fixed;
    #left {
      float:left;
      padding-top: 268px;
      position:fixed;
    #display {
      float: left;
      padding-top: 268px;
      padding-left: 28px;
      position:
    #right {
      float:left;
      padding-top: 268px;
      padding-left: 348px;
      position:fixed;
    #bottom {
      position:fixed;
      padding-top: 728px;
    </style>
    </head>
    <body style="background-color: #4B4B4B; padding-top: 0px;">
    <body>
    <div id="wrapper">
      <div id="phone">
        <div id="top"><img src="Images/top.fw.png" width="375" height="268" alt=""/></div>
        <div id="left"><img src="Images/left.fw.png" width="28" height="460" alt=""/></div>
        <div id="display"><img src="Images/AlbumPage.png" alt="" width="320" height="2000" usemap="#Map2"/>
          <map name="Map2">
            <area shape="rect" coords="3,437,317,470" href="Phone2.html">
          </map>
        </div><!-- This is the div you will use to place your mockup -->
        <div id="right"><img src="Images/right.fw.png" width="26" height="460" alt=""/></div>
        <div id="bottom"><img src="Images/bottom.fw.png" alt="" width="375" height="1076" usemap="#Map"/>
          <map name="Map">
            <area shape="rect" coords="35,3,74,42" href="goBack()">
          </map>
        </div>
      </div>
    </div>
    </body>
    </html>

    ' surrounded by fixed images'
    corrected to 'surrounded by fixed divs'.
    Sorry

  • I have a macbook pro version 10.7.5 and my mailbox will not open at all and comes up with a quit message even though it is not open. how can i get into my account. it works on my iPhone an i have internet and all other functions working on my computer

    I have a macbook pro version 10.7.5 and my mailbox will not open at all and comes up with a quit message even though it is not open. how can i get into my account. it works on my iPhone and i have internet and all other functions working on my computer

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports (not "Diagnostic and Usage Messages") for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents—the text, not a screenshot. I know the report is long. Please post all of it anyway.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • How can I get my web cam to work in Adobe Connect ?

    This is actually an end user's question that I am having trouble answering to...
    We use Adobe Connect to give online language classes, the end user is one of the students.
    I cannot find the right Support answer to give him.
    Problem:
    My camera does not work when I connect to Adobe's rooms but camera works fine with other software.
    Even though I suspected my old camera was working fine, yesterday I went ahead and bought a new camera. 
    I thought perhaps my webcam software may have been a problem, so I bought a different type camera with different software. 
    Even after removing all the old software, same result:  
    I surmised the problem might be caused by my firewall and security software, so once I tried changing the permissions for Adobe, and my Webcam, but that didn’t work.   
    Another time, I restarted my computer right before class and then turned off my firewall completely so there would be no interference but to no avail. I’m totally perplexed.  
    Isn’t there anyone else experiencing a similar problem?   Has anyone else found a solution? 
    I run Windows Vista with McAfee Internet Security Software.  I always reboot the computer before class and open no other programs other than Google Chrome. 
    I now have a brand new Microsoft LifeCam Cinema Camera with LifeCam 3.5 Webcam Software. 
    I test my camera before going online.  It always works fine.   Then I shut down the camera program and login into class.   
    When I “connect webcam” in the room, the light on my camera comes on (suggesting that it is ON), but only a black image is transmitted to the room.

    Check to see if you have Google Voice installed. If so, remove it and see
    if your problem vanishes. If not Google Voice, check to see if you have
    any other communications software which interacts with your cam and
    disable it. This was the problem I had with a similar problem on a Mac.
    MosesJOI <[email protected]>
    10/13/11 12:08 PM
    Please respond to
    [email protected]
    To
    jsb152 <[email protected]>
    cc
    Subject
    How can I get my web cam to work in Adobe Connect ?
    Re: How can I get my web cam to work in Adobe Connect ?
    created by MosesJOI in General Discussion - View the full discussion
    Thanks a lot Heyward for the swift reply !
    I sent the advice out to the end user, but unfortunately this wasn't the
    solution.
    His reply is below :-
    The default resolution of my new camera is already set at 640x360, but I
    went ahead and tried several lower resolutions (e.g. 424x240; 320x240; and
    160x120) but none worked in the room - camera still showed up as black
    blank screen.  Also, as far as I can tell, I don’t have the option of
    adjusting the frame rate.
    I started playing around with my Internet Security Settings to see if they
    might be playing a role. So far, all to no avail.
    Hmm...quite a tricky one - webcams always are - maybe if he can find a way
    to adjust the frame rate (?).
    He's going to fiddle about with the settings a bit more and see if
    something does the trick.
    If anyone has had a similar problem and found an ingenious solution,
    please jot on a note on this thread.
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/3969561#3969561]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3969561#3969561]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in General Discussion by email or at Adobe Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

  • How can I get iCloud to accept my working Apple ID and password

    My Apple ID and password works for iTunes and App Store.  I'm trying to set up iCloud on my iPhone and iPad but i keep getting an error message that reads unsupported ID.  Apple ID must be in the form of email address (@me.com).  I don't have a MobileMe account. How can I get iCloud to accept my working Apple ID and password?

    I've also reset my password to my Apple ID. I still get the Unsupported ID and password.

  • Hello, so today I realized that my iPhone with iOS 6 is frozen on the music. I can get back to the home screen but I can't get the music player to work because its frozen on the w's and will not respond to touch. I would be grateful for any help on this.

    Hello, so today I realized that my iPhone with iOS 6 is frozen on the music. I can get back to the home screen but I can't get the music player to work because its frozen on the w's and will not respond to touch. I would be grateful for any help on this.

    Hi deamayfield,
    Thanks for visiting Apple Support Communities.
    If your Music app is unresponsive, try restarting/resetting your iPhone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Best,
    Jeremy

  • I just got a new itouch and i can't get imessage or facetime to work on my home network

    I just got a new itouch 4 and i can't get imessage and facetime to work on my home wifi network (Airport Express). I can't explain it. The itouch works fine otherwise uncluding the internet. Facetime and imessage work at the apple store so there must be something wrong with my home network. Please help if you can!
    iPod touch, iOS 5.0.1

    I changed the DNS to 8.8.8.8 as you suggested with no success, I even tried 8.8.8.8, 8.8.4.4 as suggested by others with no success either.  When I try and activate iMessage or Facetime, I still get the same message "could not sign in, please check your network connection".  The internet and Mail work perfectly fine on the iPod touch so the WiFi signal IS going through.  I am at a loss, any other suggestions would be more than welcome. Thanks!

  • How can I get my excel spreadsheet to work in numbers

    How can I get this budget sheet to work in numbers when it's from excel.

    I couldn't get the picture of the whole thing it wouldn't load but you see where it say like 700.00 then below that it say 175.00 well that part works telling me what I need to know but when it get to where it says the 850 it stops working? it won't sum it out or something I'm not great with excel and this was sent to me by a first and it's our budget plan and I really need to be able to use it

  • How can I get my iPhone 5s to work in my 2015 outback

    How can I get my iPhone 5s to work in my 2015 outback?

    I Tried that and I can get calls out and in but no messaging.
    AWindow opens and says this feature is not supported  on this device
    my iPhone 4 worked fine   is it my iOS?

  • How can you get the apple tv to work in a hotel where to get on the wifi you have to still go to a website first and put in your room

    How can you get the apple tv to work in a hotel where to get on the wifi you have to still go to a website first and put in your room?

    Welcome to the Apple Community.
    Unfortunately the Apple TV doesn't have a web browser so you can't do that.

  • How can I get an external microphone to work on an iphone?

    How can I get an external microphone to work on an iphone?

    Japib is correct.
    WHAT happens? Exactly.
    Also helpful would be to tell what event preceded this behavior - added App, update iOS, etc.
    Quoted from  Apple's "How to write a good question"
       To help other members answer your question, give as many details as you can.
    Include your product name and specs such as processor speed, memory, and storage capacity. Please do not include your Serial Number, IMEI, MEID, or other personal information.
    Provide the version numbers of your operating system and relevant applications, for example "iOS 6.0.3" or "iPhoto 9.1.2".
    Describe the problem, and include any details about what seems to cause it.
    List any troubleshooting steps you've already tried, or temporary fixes you've discovered.
    ÇÇÇ

  • Hi, Im trying to install the CC installer on my new MacPro. When the installer loads it says there's a "Download Error" and can't get beyond that. Everything work fine on my old Mac. Any Ideas?

    Im trying to install the CC installer on my new MacPro. When the installer loads it says there's a "Download Error" and can't get beyond that. Everything work fine on my old Mac. Any Ideas?

    Chasel please see Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html for information on how to resolve download errors.

Maybe you are looking for

  • My calendar and contacts will not open on my pc

    the calendar and contacts from my ipad were working fine on my pc, now they will not open.

  • Internal Table data is not overflowing into Next Page -  Adobeforms

    Hi,      I have an issue if the internal table consits of more than 20 records that data is not overflowing into next page.      Here am using Header  only on first page & Table will follows... Regards, PraVeen.. Edited by: praveenreddys on Feb 15, 2

  • Queries on an interface

    I was hoping I could query on an interface that has multiple classes implementing it. I have an interface named net.sundog.listserv.Subscriber and two concrete JDO enhanced classes: net.sundog.customer.Employee and net.sundog.customer.Customer. When

  • Ping to gateway fails

    Hi, We have a vlan 10 - 192.168.5.1 /24 ( Static IP subnet ) on the core switch. One pc is connected to a port (fa1/0/11) on an edge switch-ES01 ( which has this vlan 6 ) & assigned to vlan 6 Pc is given the ip 192.168.5.25 & gateway as 192.168.5.1 B

  • Where can I find Maintenance and Service guide of Presario B2000 series?

    I tried HP online support http://h10025.www1.hp.com/ewfrf/wc/manualCategory?lc=en&dlc=en&cc=us&lang=en&product=430597& However, I could only find 'End User License Agreement' & 'Wireless Setup Guide'.