Sorting problem with baseball averages

Please help.  I am new to iworks and am learning as I go.  Overall I really just love it.  Here is the proect that I am working on:  I am doing a spreadsheet with the statistics for my son's baseball team.  The spreadsheet looks really great.  What I have is the following:  individual averages for each player, and at the bottow of the row of averages, the overall team average.
The problem is that when I try to sort the row decending averages, the row does show the highest to the lowest average, but instead of leaving the team average at the very bottom, it is placing it within the individual team averages.  So if the team average is .263, then the team average may end up between an average for a child of .300 and another with .250.   How do I correct this so that the team average remains at the very bottom?
Also, the Averages display as 0.333.  How do I get rid of the 0 in front of the .3?
thanks!!

Hi Docal,
Place the AVERAGE formula into a Footer Row. Header and Footer Rows are not included in sorts.
The leading zero on the averages, although not in line with baseball practices, is mathematically correct notation.
You can eliminate it by setting a custom format for cells in that column.
Drag the Decimals element to the format box, select it, and press the up arrow key to add a third decimal place.
Then, click the Integers Element placed in the box by default and press delete to delete it.
These steps have been completed in the illustration.
Regards,
Barry

Similar Messages

  • PROBLEM WITH MOVING AVERAGE PRICE

    Hi,
    Correct me if I’m wrong, but from what I know the moving average price should only change or be recalculated when purchases or goods_recipts are made, otherwise items should be consumed at a FIXED moving average price (cost). 
    I´ve noticed when looking into the Inventory Audit Report that the moving average price is changing in my installations and I see that SAP BO recalculates it every time an issue is made. This last thing only happens when the total amount of the transaction is rounded or left with 0 decimals and the other types such as prices, rates, quantities, percent, etc. are left with 2 or 3 decimals.
    Because of my country settings, the total amount has to have 0 decimals (I live in Chile and we don’t have cents in our currency) and the moving average price of an Item should not change when an issue is made, can you help me with this?
    Thanks and best regards to you all.
    Fernando

    Hi Nagesh,
    Thank you for your quick response.
    I understand what you say, but moving average price should not change when an issue is made and that´s what is bothering us.
    The difference between what it shoud be and what SAP BO is calculating is our concern, ie: let´s say the number of transactions is 100, would that difference be negligible?
    Here is an example:
    Goods issue:
    SO 8     11     -10,49     166,67     -1.748     99,35     16.559
    SO 9     11     -10,49     166,673     -1.748     88,86     14.811
    SO 10     11     -10,49     166,678     -1.748     78,37     13.063
    SO 11     11     -10,48     166,684     -1.747     67,89     11.316
    SO 12     11     -10,56     166,681     -1.760     57,33     9.556
    Note that coma (,) is decimal separation and period (.) is the mile separator.
    Where the 3rd line is the quantity of the goods issue, the 4th is the moving average, and the 5th is the total quantity of the issue.
    So you see 10,49 x 1748 = 1748,39977= 1748(SAP) and then SAP BO recalculates the AVG. Price.
    The problem I was talking about was the difference of the stock AVG Price with one hundred transactions or so... now the difference seems negligible (166,7 - 166,681 = 0,011).
    Can you see it changes?, is that a bug?
    Thank you
    Fernando

  • Sorting problem with simple dataset

    I'm new to spry, but even so I have to think I'm just missing
    something stupid here. The script is below ... basically just added
    an onclick to each of the column headers in a table that sorts by
    that column. Whenever I actually run it though, it always sorts by
    the first column, Rank. What am I doing wrong?
    <div spry:region="reportData">
    <table border=1 cellspacing=2 cellpadding=2>
    <tr>
    <th
    onClick="javascript:reportData.sort('Rank','toggle');">Rank</th>
    <th
    onClick="javascript:reportData.sort('Player','toggle');">Player</th>
    <th
    onClick="javascript:reportData.sort('Team','toggle');">Team</th>
    <th
    onClick="javascript:reportData.sort('Bye','toggle');">Bye</th>
    <th
    onClick="javascript:reportData.sort('Games','toggle');">Games</th>
    <th
    onClick="javascript:reportData.sort('Average','toggle');">Average</th>
    <tbody spry:repeatchildren="reportData">
    <tr>
    <td>{@Rank}</td>
    <td><a
    href="javascript:makeWin('rosters.pl?PlayerId={@PlayerId}', 400,
    600 );">{@Player}</a></td>
    <td>{@Team}</td>
    <td>{@Bye}</td>
    <td>{@Games}</td>
    <td>{@Average}</td>
    </tr>
    </tbody>
    </table>
    </div>

    The first arg to the sort method is the name of the column to
    use. I see from your data refs that your column names actually
    begin with @ characters, so you have to make sure you pass the same
    thing to the sort method:
    <th
    onClick="javascript:reportData.sort('@Rank','toggle');">Rank</th>
    <th
    onClick="javascript:reportData.sort('@Player','toggle');">Player</th>
    <th
    onClick="javascript:reportData.sort('@Team','toggle');">Team</th>
    <th
    onClick="javascript:reportData.sort('@Bye','toggle');">Bye</th>
    <th
    onClick="javascript:reportData.sort('@Games','toggle');">Games</th>
    <th
    onClick="javascript:reportData.sort('@Average','toggle');">Average</th>
    --== Kin ==--

  • Problem with moving average

    I have to create a report which displays rolling average of revenue.
    The report contains two columns week and avg revenue. I have to display only ten weeks from the current week.
    For each week the revenue should be calculated as follows;
    weeks     actual revenue     Avg revenue
    1     10          10     
    2     20          (10+20)/2
    3     30          (10+20+30)/3     
    4     40          (10+20+30+40)/4
    5     50          (20+30+40+50)/4
    6     60          (30+40+50+60)/4
    (current week-10 weeks)
    current week
    I have used Mavg(actual revenue, 4) to calculate avg revenue.
    I am getting the correct values. However if I apply a filter say weeks between current week and (current week-10 weeks), I am facing a problem.
    My (current week-10 weeks) is now showing avg revenue as 10 which is my actual revenue amount.
    But i would like to show the revnue amount as an avgerage of (current week-10 weeks) and previous three weeks.
    The filter to limit the number of weeks is applied before calculating the moving average. Is there anyway to calculate the moving average first and then apply the week filter to report.
    Pls help me solving this.
    Thanks

    Do this:
    Have the measure as :
    case when Periods."Weekdate" > TIMESTAMPADD(SQL_TSI_WEEK, -10 , CURRENT_DATE) then MAVG ("Sales Measures".Units, 4) else 999999999 end
    And then apply filter on the above measure column as :
    Case when Periods.Weekdate > TIMESTAM... ' is not equal to / is not in 999999999
    Let us know how it goes.
    PS : To prevent runaway query, you may want filter it further by Periods."Weekdate" > TIMESTAMPADD(SQL_TSI_WEEK, -15 , CURRENT_DATE)

  • Sort Problem with "My Podcasts"

    Since updating to iTunes 11.1, the list of "My Podcasts" are in an indiscernible random order (not by date, name, etc.) and I see no way of forcing them into alphabetical order.  This makes this particular screen useless since the order also seems to change on me.  Is there a way to sort this list, or am I missing something obvious?

    It looks like you can manually drag and drop them into your chosen order. Of course, this is a major headache, but like you can I can't see a way to automatically sort them alphabetically.
    (To be honest I've never used the "My Podcasts" view, because I didn't like it before, but now the "List" view is basically unusable.)

  • Sorting problem with 5g Ipod (firmware 1.2)

    After upgrading my IPod 60G to 1.2 firmware I noticed that songs sorting in IPod has changed. Some albums are not sorted by the number of tracks. I checked the sorting in iTunes and iPod and it differs. Can anyone help me?

    I didn't thought it would be that hard to explain... No, iTunes even in directory of my iPod works absolutely fine. But if I disconnect it from PC, and use it as a normal player the order of songs in some albums is messed. I can't reorder songs in iPod while walking to work

  • Can't connect to Facebook by app in settings. Problem finding account. No problem with app on home page

    Can some one help me sort problem with Facebook app in settings. When I  use app message says problem finding account re-enter password after doing this message says unable to connect to server. I have no problem using Facebook app on home pages.

    maybe just a temporary issue with service. Should be working now.

  • Problems with sending/receiving picture messages

    Does anyone know how to sort problems with sending/receiving picture messages on the iphone 4S?  I've gone through all the re-setting etc at the place I bought it and it still doesn't work!! Spoken to 02 and they said it's an issue with Apple software?? Any help appreciated.

    Can you send/receive SMS's? If so, and you can't send/receive MMS's, and MMS is turned on in Settings, 99.9% of the time the problem is on your carrier's end...most likely MMS is not provisioned properly on your account, regardless of what your carrier is telling you. Call back & have them remove MMS from your account & then re-provision your account for MMS.

  • TS3276 I have recently had a problem with one of my hotmail accounts, some sort of virus sending random emails to people in my address book. Hotmail advised me to change my password for that account, which I did. Why won't mail recognise the new password?

    I have recently had a problem with one of my hotmail accounts, some sort of virus sending random emails from my address book. Hotmail advised me to delete all contacts and change the password for that account, which I did on my laptop running windows XP. The change was successful and I was able to send and receive emails with no problem. I then had to change the account password on my iPhone 4s, which I did and it too was successful but when I came to change the password on my iMac, running the latest version of Lion it would not recognise the new password. I have tried to remove the account details and re-install but every time I go to add new account my old details are in the box. This is very frustrating as I use my iMac for all my profects and I need to access my email. Please help.

    hi guys,
    I had already deleted all reference to the hotmail account in question from the keychain access app, I have also tried to delete and re-instal the account details from within mail. The icon in the side bar dissapears but when I go to Add Account, the old account details are in the new account box. I then input my new password but am told that the server does not recognise it. If I access hotmail via google on the iMac I can get into my account with no problems. I am thinking there must be some other form of security system within the mac software that is blocking the new password. This is driving me nuts. I have been trying to resolve this for the last two days. Thank you for your advise anyway.

  • When I print a photo to my epson printer, it comes out larger than the original photo - so the photo prints beyond the borders. Tried readjusting all sorts of things but nothing helps. I had this same problem with my Canon. any ideas?

    When I print a photo to my epson printer, it comes out larger than the original photo - so the photo prints beyond the borders. Tried readjusting all sorts of things but nothing helps. I had this same problem with my Canon. any ideas?

    Crop to the print size before pringing
    LN

  • Ipod Touch 5th Generation ios7 problem with Genre sorting

    Hi.  I upgraded my 5th gen ipod touch to ios7.  But I can no longer sort my music by genre.  For example, I have Bruce Springsteen divided up into Rock and 80's.  But when I go to "80s" genre and click "Bruce Springsteen" it shows ALL songs by Bruce Springsteen.  The ones I have labeled as 80s AND the ones labeled as Rock.  And vice versa.  If I go to Rock and Bruce Springsteen, I get the Rock songs and the 80s songs as well.
    Basically, if I go to ANY genre and pick an artist that has songs in multiple genres, it will list ALL songs and albums by that artist and not just the songs in that particular genre.  So it makes sorting by genre completely useless.
    I've seen this on every device with ios7 installed.  I didn't have this problem with ios6 and I prefer to sort my music by genre.  I've spent a lot of time organizing it that way because that's how I want it.
    Does anybody know any way around this?  Thanks!

    You say you have iOS 7. If you are a developer you have access to the private OS 7 developer's forum
    iOS 7 Developer forum- Apple Developer
    Otherwise you are on your own
    PSA: iOS 7 If you're not a developer, don't install developer betas on your iPhone | TUAW - The Unofficial Apple Weblog

  • Hi I have had problems with photo's and films going onto a 2010 Apple classic MP3.  Have managed to sort photos but it still refuses to copy the films purchased. It comes up with not copied cannot be played on this ipod.

    Hi have had problems with photo's and films going onto a 2010 Apple Classic mp3. Have managed to sort photo's but the films won't copy and comes up with message videos not copied cannot be played on this ipod

    razzbust wrote:
    ...but the films won't copy and comes up with message videos not copied cannot be played on this ipod
    Self explanatory.
    You could try creating an iPod version of the films.
    Use CTRL and B to display the Menu bar shown above. Alternatively, use the ALT key, followed by the F key, the W key and finally the I (eye) key - that's (menu)/File/Create New Version/Create iPod or iPhone version.

  • Re: All sorts of problems with BT Broadband

    Hi, I too am having lots of problems and wondered whether someone could help?
    We moved into our house recently. Its 15 years old and has had a BT line previously, however we still needed a new one installing apparently.
    Engineer came to do this saturday just gone but couldn't complete as some problems with exchange and the line not getting a dial tone etc.
    Someone came out Monday to try and fix this, said further problems.
    Someone came out Tuesday and finally said fixed. Got emails from BT saying line and broadband sorted.
    Came home - broadband very slow. Plugged into the main socket, several calls to BT, checked speed online, the stats are below.
    Despite it saying 7meg it is still very slow. Taking ages to download anything, simple pages on the internet take ages to load etc.
    Also did a test on speedtest.net and got quite different results. Have posted both results below.
    Getting very annoyed now as seems no1 can work out what the problem is, get transferred to BT tech help in india every night spending hours on end just for them to say they don't know what the problem is.
    No idea what to do next. Advice much appreciated.
    1. Best Effort Test:  -provides background information.
    Download  Speed
    0.05 Mbps
    0 Mbps
    0.25 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 0.05 Mbps
     For your connection, the acceptable range of speeds is 0.05 Mbps-0.25 Mbps.
     Additional Information:
     Your DSL Connection Rate :6.82 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 0.14 Mbps
    If you wish to discuss these results please contact your Broadband Service Provider.
    If you are experiencing problems with specific applications, servers or websites please contact your Broadband Service Provider for assistance.
    Your test has completed please close this window to exit the performance tester.
    1. Best Effort Test:  -provides background information.
    Download  Speed
    0.05 Mbps
    0 Mbps
    0.25 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 0.05 Mbps
     For your connection, the acceptable range of speeds is 0.05 Mbps-0.25 Mbps.
     Additional Information:
     Your DSL Connection Rate :6.82 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 0.14 Mbps
    If you wish to discuss these results please contact your Broadband Service Provider.
    If you are experiencing problems with specific applications, servers or websites please contact your Broadband Service Provider for assistance.
    Your test has completed please close this window to exit the performance tester.
    1. Best Effort Test:  -provides background information.
    Download  Speed
    0.05 Mbps
    0 Mbps
    0.25 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 0.05 Mbps
     For your connection, the acceptable range of speeds is 0.05 Mbps-0.25 Mbps.
     Additional Information:
     Your DSL Connection Rate :6.82 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 0.14 Mbps
    If you wish to discuss these results please contact your Broadband Service Provider.
    If you are experiencing problems with specific applications, servers or websites please contact your Broadband Service Provider for assistance.
    Your test has completed please close this window to exit the performance tester.
    1. Best Effort Test:  -provides background information.
    Download  Speed
    0.05 Mbps
    0 Mbps
    0.25 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 0.05 Mbps
     For your connection, the acceptable range of speeds is 0.05 Mbps-0.25 Mbps.
     Additional Information:
     Your DSL Connection Rate :6.82 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 0.14 Mbps
    If you wish to discuss these results please contact your Broadband Service Provider.
    If you are experiencing problems with specific applications, servers or websites please contact your Broadband Service Provider for assistance.
    Your test has completed please close this window to exit the performance tester.
    1. Best Effort Test:  -provides background information.
    Download  Speed
    0.05 Mbps
    0 Mbps
    0.25 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 0.05 Mbps
     For your connection, the acceptable range of speeds is 0.05 Mbps-0.25 Mbps.
     Additional Information:
     Your DSL Connection Rate :6.82 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 0.14 Mbps
    If you wish to discuss these results please contact your Broadband Service Provider.
    If you are experiencing problems with specific applications, servers or websites please contact your Broadband Service Provider for assistance.
    Your test has completed please close this window to exit the performance tester.
    ADSL Line Status
    Connection Information
    Line state:
    Connected
    Connection time:
    0 days, 00:57:28
    Downstream:
    6.656 Mbps
    Upstream:
    448 Kbps
    ADSL Settings
    VPI/VCI:
    0/38
    Type:
    PPPoA
    Modulation:
    G.992.1 Annex A
    Latency type:
    Interleaved
    Noise margin (Down/Up):
    9.9 dB / 29.0 dB
    Line attenuation (Down/Up):
    41.1 dB / 21.0 dB
    Output power (Down/Up):
    19.9 dBm / 12.0 dBm
    FEC Events (Down/Up):
    31043 / 0
    CRC Events (Down/Up):
    1 / 0
    Loss of Framing (Local/Remote):
    0 / 0
    Loss of Signal (Local/Remote):
    0 / 0
    Loss of Power (Local/Remote):
    0 / 0
    HEC Events (Down/Up):
    0 / 0
    Error Seconds (Local/Remote):
    1 / 0

    Hi again,
    Having now waited a total of 15 days since the line went active, these are the stats.  We did briefly get up to 5mb but it has dropped again. The router has not been touched, turned off or played with at all for over a week now. This is still not achieving the max it is capable of, any ideas?
    Many thanks in advance
    1. Best Effort Test:  -provides background information.
    Download  Speed
    2.65 Mbps
    0 Mbps
    7.15 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 2.65 Mbps
     For your connection, the acceptable range of speeds is 0.6 Mbps-7.15 Mbps.
     Additional Information:
     Your DSL Connection Rate :4.42 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 3.5 Mbps
    ADSL Line Status
    Connection Information
    Line state:
    Connected
    Connection time:
    3 days, 12:43:18
    Downstream:
    4.313 Mbps
    Upstream:
    448 Kbps
    ADSL Settings
    VPI/VCI:
    0/38
    Type:
    PPPoA
    Modulation:
    G.992.1 Annex A
    Latency type:
    Interleaved
    Noise margin (Down/Up):
    13.0 dB / 29.0 dB
    Line attenuation (Down/Up):
    41.6 dB / 21.0 dB
    Output power (Down/Up):
    19.5 dBm / 12.1 dBm
    FEC Events (Down/Up):
    4978107 / 597
    CRC Events (Down/Up):
    5258 / 410
    Loss of Framing (Local/Remote):
    0 / 0
    Loss of Signal (Local/Remote):
    0 / 0
    Loss of Power (Local/Remote):
    0 / 0
    HEC Events (Down/Up):
    95194 / 391
    Error Seconds (Local/Remote):
    977 / 275

  • Problem With File Reading And Sorting

    I'm having problems with a particular task. Here is what I have to do:
    Write a program which reads 100 integers from a file. Store these integers
    in an array in the order in whcih they are read. Print them to the screen.
    Sort the integers in place using bubble sort. Print the sorted array to the
    screen. Now implement the sieve of Eratosthenes to place all prime numbers
    in an ArrayList. Print that list to the screen.
    Here is the code I have so far:
    import java.util.ArrayList;
    import java.io.*;
    public class Eratosthenes
        private ArrayList numbers;
        private String inputfile1 = "numbers.txt";
        public Eratosthenes()
            numbers = new ArrayList();
        public void readData()
            try {
                BufferedReader reader = new BufferedReader(new FileReader(inputfile1));
                for(int i = 1; i <= 100; i++) {
                    String temp = reader.readLine();
                    numbers.add();
            catch(Exception e)
    This is the file reading part I have done but it doesn't recognise the line numbers.add() . It brings up the error - 'Cannot resolve symbol - method add(). Thats the first problem I have, can anyone see any way to fix it and to achieve the task. Also can someone help with the structure of a bubble sort method and a sieve of Eratosthenes method as I have no clue whatsoever. Any help will be greatly appreciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Ok, I've done that but I'm having another problem. When I'm printing an output to the screen, it prints 100 lines of integers and not 1 line of 100 integers. Can you see the problem in the code that is doing this?
    import java.util.ArrayList;
    import java.io.*;
    public class Eratosthenes
        private ArrayList numbers;
        private String inputfile1 = "numbers.txt";
        public Eratosthenes()
            numbers = new ArrayList();
        public void readData()
            try {
                BufferedReader reader = new BufferedReader(new FileReader(inputfile1));
                for(int i = 1; i <= 100; i++) {
                    String temp = reader.readLine();
                    numbers.add(temp);
                    System.out.println(numbers);
            catch(Exception e)
    }

  • A Problem With Sorting via Applescript

    Hello everyone. I have always lurked these forums and learnt many things along the way, but this is my first question, and I hope that someone can help me out. I apologise for the huge post.
    I have created a spreadsheet in Numbers that I plan to use for a soccer tournament. There are 8 Groups of 4 teams in the competition, so I have set each Group up on its own sheet in order to record the results of the games. Group 1 is on Sheet 1, Group 2 is on Sheet 2 etc. These results are then fed into a second table on the each page in order to create a competition ladder for each group. So far so good, works beautifully. See image:
    My next step is sorting these tables so that they form a proper "results table" with the best team on top. My wish is to sort the results table in this order:
    Points
    Diff
    F
    Although not very experienced with Applescript, I have written a script to sort all of the 8 sheets so that I don't have to do them one at a time. Unfortunately I find that every second sheet does not sort correctly, even though I am using the same instructions for each seet in my script.
    See here, sheet two:
    Sheet 3 sorts correctly but not sheet 4, sheet 5 is good but sheet 6 bad etc...
    This is my script:
    tell application "Numbers"
              tell table "Ladder1" of sheet "Group1" of document "Manu"
      sort by column "k" direction descending
              end tell
              tell table "Ladder1" of sheet "Group1" of document "Manu"
      sort by column "i" direction descending
              end tell
              tell table "Ladder1" of sheet "Group1" of document "Manu"
      sort by column "g" direction descending
              end tell
              tell table "Ladder2" of sheet "Group2" of document "Manu"
      sort by column "k" direction descending
              end tell
              tell table "Ladder2" of sheet "Group2" of document "Manu"
      sort by column "i" direction descending
              end tell
              tell table "Ladder2" of sheet "Group2" of document "Manu"
      sort by column "g" direction descending
              end tell
              tell table "Ladder3" of sheet "Group3" of document "Manu"
      sort by column "k" direction descending
              end tell
              tell table "Ladder3" of sheet "Group3" of document "Manu"
      sort by column "i" direction descending
              end tell
              tell table "Ladder3" of sheet "Group3" of document "Manu"
      sort by column "g" direction descending
              end tell
              tell table "Ladder4" of sheet "Group4" of document "Manu"
      sort by column "k" direction descending
              end tell
              tell table "Ladder4" of sheet "Group4" of document "Manu"
      sort by column "i" direction descending
              end tell
              tell table "Ladder4" of sheet "Group4" of document "Manu"
      sort by column "g" direction descending
              end tell
              tell table "Ladder5" of sheet "Group5" of document "Manu"
      sort by column "k" direction descending
              end tell
              tell table "Ladder5" of sheet "Group5" of document "Manu"
      sort by column "i" direction descending
              end tell
              tell table "Ladder5" of sheet "Group5" of document "Manu"
      sort by column "g" direction descending
              end tell
              tell table "Ladder6" of sheet "Group6" of document "Manu"
      sort by column "k" direction descending
              end tell
              tell table "Ladder6" of sheet "Group6" of document "Manu"
      sort by column "i" direction descending
              end tell
              tell table "Ladder6" of sheet "Group6" of document "Manu"
      sort by column "g" direction descending
              end tell
              tell table "Ladder7" of sheet "Group7" of document "Manu"
      sort by column "k" direction descending
              end tell
              tell table "Ladder7" of sheet "Group7" of document "Manu"
      sort by column "i" direction descending
              end tell
              tell table "Ladder7" of sheet "Group7" of document "Manu"
      sort by column "g" direction descending
              end tell
              tell table "Ladder8" of sheet "Group8" of document "Manu"
      sort by column "k" direction descending
              end tell
              tell table "Ladder8" of sheet "Group8" of document "Manu"
      sort by column "i" direction descending
              end tell
              tell table "Ladder8" of sheet "Group8" of document "Manu"
      sort by column "g" direction descending
              end tell
    end tell
    Can anybody see any obvious errors with the script? Any info would be greatly appreciated. Thanks!

    First I would look at some items to simplify the script:
    I did NOT run this.
    tell application "Numbers"
              set LadderNumber to 1
              repeat 8 times
           set theLadder to "Ladder" & LadderNumber
           set theGroup to "Group" & LadderNumber
           tell table theLadder of sheet theGroup of document "Manu"
                sort by column "k" direction descending
                sort by column "i" direction descending
                sort by column "g" direction descending
                             end tell
                             set LadderNumber to (LadderNumber + 1)
              end repeat
    end tell
    I don't see a problem with the script.  I suggest adding a dummy table to each sheet and confirming you can set a value in the dummy table from the script (maybe after manually setting the value to some default value).  you can also add print dialogs at each step to see what's happening... like:
    set aValue to <what ever>
    display dialog "The value is: " & aValue
    just some thoughts

Maybe you are looking for

  • How to make top level navigation not refresh

    Hello Guys, I have a question concerning on my External Facing Portal, my boss wants that when I click on a tab or a link in the Top Level Navigation , to load the content in the Content Area without refreshing the whole page, What I want is that whe

  • Urxvt, xterm, vim, and gnu screen.

    To make this simple: all i want is 256 color support in one terminal, that will give 256 color support in vim, gnu screen, and not screw up shells i ssh into.    If I could get this working in xterm alone consider this solved. The more I try to fix m

  • Dump in BI Content activation

    Dear All, We have upgraded Bi system to version BW 7 SP level 18 (SAPKW70018). I am activating the technical content from SPRO. I am getting the below dump and job is getting cancelled. In ST22, it is displaying as RAISE_EXCEPTION. The details are as

  • My laptop sucks battery dry when its not active

    I have a compaq 615 laptop, windows 7 32bit. Some days ago i noticed that my battery runs down to below 7% when its not active, this happens when i use the battery to about 60% or 50% before shutting down the system and try to on it after some hours.

  • File permission error while using vista

    HI In using vista  .I am getting file permission error in create text file.wats the reason? kavi