How to Rank

How can we set up a question to rank multiple options in order of importance?

Hi,
This is not something we currently support but you can add or vote on feature ideas:
http://forums.adobe.com/community/formscentral?view=idea
If you need to add a new idea click "Create an idea" under "Actions" in the top right.
Thanks

Similar Messages

  • How to rank  according to sales

    Hi, im currently need to do a report.
    I need to rank my sales numbers desc.
    how would i go about doing this?
    eg.
    rank | description | sales
    1 | cosmo | 525
    2 | you | 523

    Thanks, but i cant seem to make it work.
    I actually need 2 paremeters to select the rank:
    eg. select rank from: 18 to 25
    This is the code i have, but it doesnt work, it brings back all the ranks:
    select RANK() OVER (ORDER BY sum(ool.ORDERED_QUANTITY) desc ) "Rank"
    , ool.customer_number
    ,hp.PARTY_NAME
    ,osf.ORGANIZATION_CODE
    ,osf.NAME
    ,sum(ool.ORDERED_QUANTITY) sales
    from (select RANK() OVER (ORDER BY sum(ool.ORDERED_QUANTITY) desc ) as rnk
    from oe_order_lines_v ool
    ,hz_parties hp
    ,hz_cust_accounts hca
    ,OE_SHIP_FROM_ORGS_V osf
    ,xxpub_calendar_plan_hdr_v cph
    , mtl_system_items msi
    ,ar_customers_v cust
    --,xxwsh_routeman_v xr
    where ool.CUSTOMER_NUMBER = hca.ACCOUNT_NUMBER
    AND ool.CUSTOMER_NUMBER = cust.CUSTOMER_NUMBER
    --AND xr.CUSTOMER_NUMBER = ool.CUSTOMER_NUMBER
    --AND xr.LINE_ID = ool.LINE_ID
    --AND xr.ROUTE_FUCNTION = 'DELIVERY'
    AND hca.PARTY_ID = hp.PARTY_ID
    AND ool.SHIP_FROM = osf.ORGANIZATION_CODE
    AND msi.organization_id = fnd_profile.value('SO_ORGANIZATION_ID')
    AND ool.inventory_item_id = msi.inventory_item_id
    AND msi.inventory_item_status_code = 'Active'
    AND cph.inventory_item_id = msi.inventory_item_id
    AND cph.organization_id = msi.organization_id
    AND ool.INVENTORY_ITEM_ID = cph.INVENTORY_ITEM_ID
    AND ool.ORDERED_ITEM = cph.PUBLICATION_CODE
    AND to_char(cph.ISSUE_NUMBER) = ool.ATTRIBUTE1
    ) t,
    oe_order_lines_v ool
    ,hz_parties hp
    ,hz_cust_accounts hca
    ,OE_SHIP_FROM_ORGS_V osf
    ,xxpub_calendar_plan_hdr_v cph
    , mtl_system_items msi
    ,ar_customers_v cust
    --,xxwsh_routeman_v xr
    where ool.CUSTOMER_NUMBER = hca.ACCOUNT_NUMBER
    AND ool.CUSTOMER_NUMBER = cust.CUSTOMER_NUMBER
    --AND xr.CUSTOMER_NUMBER = ool.CUSTOMER_NUMBER
    --AND xr.LINE_ID = ool.LINE_ID
    --AND xr.ROUTE_FUCNTION = 'DELIVERY'
    AND hca.PARTY_ID = hp.PARTY_ID
    AND ool.SHIP_FROM = osf.ORGANIZATION_CODE
    AND msi.organization_id = fnd_profile.value('SO_ORGANIZATION_ID')
    AND ool.inventory_item_id = msi.inventory_item_id
    AND msi.inventory_item_status_code = 'Active'
    AND cph.inventory_item_id = msi.inventory_item_id
    AND cph.organization_id = msi.organization_id
    AND ool.INVENTORY_ITEM_ID = cph.INVENTORY_ITEM_ID
    AND ool.ORDERED_ITEM = cph.PUBLICATION_CODE
    AND to_char(cph.ISSUE_NUMBER) = ool.ATTRIBUTE1
    AND t.rnk <= 5 --:p_rank
    group by 1,ool.CUSTOMER_NUMBER
    ,hp.PARTY_NAME
    ,osf.ORGANIZATION_CODE
    ,osf.NAME
    Message was edited by:
    Shashe
    Message was edited by:
    Shashe

  • How to rank() by a particluar value

    HI,
    i am trying to rank a column on the condition that a particular value exists
    select * from t
    id   col2                
    1    1                        
    2    17                       
    3    1                          
    4    1                          
    5    11                          
    6    1                          
    i want to rank the values of col2 order by ID where col2 = 1.
    If col2 value is not 1 then rank column should show 0
    in other words, rank would show the progressive occurance of value = 1 in col2 order by ID column
    the desired output
    id   col2        rank         
    1    1                 1        
    2    17               0         
    3    1                 2         
    4    1                 3         
    5    11               0         
    6    1                 4          pls tell how to achieve this
    create table t
    (id number,
    col2 number)
    insert into t values ( 1, 1)
    insert into t values (2, 17)
    insert into t values (3 , 1)
    insert into t values (4 , 1)
    insert into t values (5 , 11)
    insert into t values (6 , 1)

    Todd Barry ,
    thankyou so much for such a short query, worked perfectly
    one more thing, if i also want to include 17 in my condition so that the the ranking should be done if the values of col2 order by ID are 1 or 17
    If col2 value is not 1 or 17 then rank column should show 0
    In other words, rank would show the progressive occurance of value = 1 or value = 17 in col2 order by ID
    i have tried this
    select t.*,
      decode(col2, 1, rank() over (order by decode(col2, 1, 0, null), id),
                   17, rank() over (order by decode(col2, 17, 0, null), id), 0)  rank
         from t
        order by id
    and this gives me this. its wrong, it starts ranking again from start when col2  =17
            ID       COL2       RANK
             1          1          1
             2         17         1
             3          1          2
             4          1          3
             5         11         0
             6          1          4
    so my
    desired output is
    [pre]
            ID       COL2       RANK
             1          1          1
             2         17         2
             3          1          3
             4          1          4
             5         11         0
             6          1          5
    [pre]
    i would be most grateful if query is short like ur first one
    regards,
    asim                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How iTunes Ranks Podcasts When Searching by Keywords

    Hi all. I have a podcast called OperaNow! I have been doing since 2007. We have 125 reviews, almost 200 episodes and have been producing fairly regularly for that time. A few breaks here and there, but have stayed up-to-date.
    My question is how iTunes determines what is listed when you do a keyword search. If you search for "opera", and then filter down by "podcasts" on the right it has a listing if 10 or so opera related podcasts. You can then press "see all" to see w longer list. My show is buried so deep it's amazing. We used to be higher up but have dropped down over the years.
    Is this listing also determined by recent subscribers/activity? Some of the shows in the top 15 haven't producded new material in a few years, yet there they are. I'm just a bit confused as to how this is determined?
    Any ideas?
    -A frustrated podcaster

    The methods the Store uses for ranking searches and choosing featured podcasts are shrouded in mystery. they may well be related to the number of subscribers, the frequency of updates, the perceived interest of the podcast itself, or any other factors. We don't know, and they aren't telling.
    There isn't anything you can do about this except to make your podcast as interesting as possible, which I'm sure you are already doing. You are, though in competition with thousands of other podcasts.

  • How to create a Top 10 based on values from a database?

    I have a database table that stores scores for events, like a rating system.
    Users choose an event they want to score, enter their score/rating and insert this into the database table.
    This gives me, in my table:
    Event - Rating - User
    Soccer - 5 - Joe Public
    Soccer - 4.5 - Jane Public
    Tennis - 3 - Joe Public
    ...and so on.
    I would like to do two things.  Firstly, I need to calculate the average for each event, which is easy enough, although I haven't quite got my head around the GROUP BY clause which, as I understand it, only allows me to use one database field?
    Secondly, I would like to display, dynamically from the database, a list of top 10 events based on the results of the average ratings.
    How easy is this to achieve?  I'm using ASP/VBScript and MSSQL database.
    Appreciate any advice offered.  Thanks.
    Regards
    Nath.

    Hi.  Here is what I've got, so far, to calculate the average:
    SELECT     AVG(mgscore) AS mgAVGscore, mgmovieID, mgmovie, mgmovierelease
    FROM         dbo.MGreviews
    GROUP BY mgmovieID, mgmovie, mgmoviecert, mgmovierelease
    How would I then run the RANK function?  Here's the example you provided:
    SELECT RANK() OVER (ORDER BY Age) AS [Rank by Age],
           FirstName,
           Age
      FROM Person
    I've tried this:
    SELECT     RANK () OVER ORDER BY AVG(mgscore) AS mgAVGscore AS [Rank by Score], mgmovieID, mgmovie, mgmovierelease
    FROM         dbo.MGreviews
    GROUP BY mgmovieID, mgmovie, mgmoviecert, mgmovierelease
    ...but this produces the following error:
    Error in list of function arguments: 'AS' not recognized.  Can you help?  I'm not sure I'm quite understanding how the RANK function works.
    Much appreciate.
    Regards
    Nath.

  • I would llke my report to show how many submitters marked a certain choice

    My form asked survey takers to rank a list of choices from 1 - 5 as their favorite and least favorite respectively.
    I would like my summary report to show how many ranked a choice as #1, marked a choice as #2 and so on. Is there a way to do that?

    Thank you so much. It occurred to me after I asked the question that the Excel option might be my best bet.
    Vivian Newton  |  Executive Secretary
    Illinois Federation of Teachers
    500 Oakmont Lane, Westmont, IL 60559
    T: 630/468-4080  E: [email protected]<mailto:[email protected]>
    Direct: 630/468-4063
    F: 630/468-4071
    www.ift-aft.org<http://www.ift-aft.org/>  www.facebook.com/iftaft<http://www.facebook.com/iftaft>

  • Ranking one object (row) with two/multiple criteria - excluded from one set of results if ranked by the other criteria.

    Working in Numbers 3.2.2. I've figured out how to rank with one or more criteria, but I need help completing my formula...
    I have a table with each person (row) who have different values for two different products (Columns B and C). I want to rank each person by column B (top 5), then rank the remaining 5 by column C.
    I'm able to create the table that ranks by product A using the formulas:
    A2  =LOOKUP(LARGE(Totals::Product A,ROW()−1),Totals::Product A,Totals::A)
    B2  =LARGE(Totals::Product A,ROW()−1)
    C2  =LOOKUP(LARGE(Totals::Product A,ROW()−1),Totals::Product A,Totals::Product B)
    I need exclude Persons H, D, G, J, and A from the ranking of Product B for the remaining 5 slots. This is where I'm getting stuck... I've manually created the rest of the table showing the sorting of Product B, excluding the top 5 people from Product A, and the final results I'm after. (The green cells show the ranking pattern I'm after. (Yes, Person F appears to get shafted. That's why I'm doing this. ))

    Hello
    You may create a rank index column as follows so that you can sort or retrieve the data based upon it.
    Table 1
    A1  Name
    A2  N01
    A3  N02
    A4  N03
    A5  N04
    A6  N05
    A7  N06
    A8  N07
    A9  N08
    A10 N09
    A11 N10
    B1  A
    B2  806
    B3  206
    B4  705
    B5  749
    B6  169
    B7  28
    B8  80
    B9  385
    B10 733
    B11 125
    C1  B
    C2  925
    C3  803
    C4  115
    C5  189
    C6  925
    C7  191
    C8  699
    C9  64
    C10 510
    C11 738
    D1  rank index
    D2  =IF(B2-LARGE(B,5)>=0,B2*"1e8",C2)
    D3  =IF(B3-LARGE(B,5)>=0,B3*"1e8",C3)
    D4  =IF(B4-LARGE(B,5)>=0,B4*"1e8",C4)
    D5  =IF(B5-LARGE(B,5)>=0,B5*"1e8",C5)
    D6  =IF(B6-LARGE(B,5)>=0,B6*"1e8",C6)
    D7  =IF(B7-LARGE(B,5)>=0,B7*"1e8",C7)
    D8  =IF(B8-LARGE(B,5)>=0,B8*"1e8",C8)
    D9  =IF(B9-LARGE(B,5)>=0,B9*"1e8",C9)
    D10 =IF(B10-LARGE(B,5)>=0,B10*"1e8",C10)
    D11 =IF(B11-LARGE(B,5)>=0,B11*"1e8",C11)
    Tested with Numbers 2.0.5 under OS X 10.6.8.
    Good luck,
    H

  • Ranking Order importance in App

    Can anyone tell how the ranking order works and how the systems search the available amount as per ranking order. here i have doubt, I need to pay Rs.150000/- to a vendor and as per my ranking order there is an amount of Rs.100000/- available in first bank. how the system pays for this vendor.
    Thanks in advance.

    Thank you verymuch for the answer.
    I want to be littlebit clear about this, As i asked in the question the payment should be made for Rs.150000/-. amount avaiable in the first bank is only Rs.100000/-. Now my question is how the system picks amount from the bank. Like whether it take Rs.100000/- from the first bank and remaining Rs.50000/- from the second bank or total Rs.150000/- from the second bank. As per my knowledge system pics the total amount from the second bank. Kindly correct if i am wrong.
    Thanks in advance,
    Waiting for the Reply.

  • Ranking order in House Banks

    Dear SAP GURUs,
    I would like to know how the ranking order in House Bank concept works?
    Kindly guide me.
    Thanks and regards,
    Vinayak

    Hi,
    Find below the process of Ranking in House Banks
    For each payment method, you have to specify which house banks are permissible and then assign a ranking order to the list of permissible banks. For each payment method/house bank combination, you specify via which bank account the payment is to be made.
    During the payment run, the payment program attempts to determine a house bank and a bank account for which the available amount is sufficient for the payment. The following results are possible:
    u2022No house bank is found that fulfills all the conditions, which means that the payment cannot be made with the method used to carry out the check. The system then checks the next available bank. If no bank is found, the payment method cannot be used. The next payment method (if one exists) is checked. This is recorded in the payment run log.
    u2022One house bank only is determined. This house bank makes the payment.
    u2022The system lists several house banks. The house bank makes the payment with the highest priority (in accordance with the defined ranking order of the banks).
    The payment run does not split the amounts. If the amount in a bank account is not sufficient for a payment, the payment program chooses a different bank account. If no other bank account is found from which it can post the total amount of a payment, the payment is not made.
    Hope it helps
    SJ

  • Always getting syntax error when using RANK formula. Please help!!

    i am desperate! tried EVERYTHING. so as a last try, I tested the very same Example that Apple gives to elaborate how the "RANK" formula works...and you guessed it....NOT WORKING.
    not even a reconstruction 1 to 1 of the apple example worked, giving me a syntax error.
    thus i am assuming that i am doing something wrong on a very basic level i would have never thought of (maybe a setting i have wrong?, maybe if you have blue as background formulas don't work?).
    i would be sooooo grateful for any help!!!

    Thank you very much for answering this quickly.
    but unfortunately it doesnt work
    i made some screenshots, maybe this way someone sees a maybe obvious mistake i am making
    and
    Message was edited by: Apolloss

  • Ranking search function based on column content

    We need to search on many docs saved in database. These LOBs has one column KEYWORD VARCHAR2 (64), in which we should put some words that help user who want to search on these values.
    Is there any explanation (code) how to rank found docs by this KEYWORD field. Something like google but much poorer and based only on one column search.
    THX!
    P.S:
    My config is Oracle XE

    You can use the score function.

  • How do you remove a trusted WiFi network ?

    I was wondering how you remove a trusted WiFi Network from your iPhone, I keep getting put on a network that I trusted but I no longer want to be a part of as it requires me to pay for access in my office building.

    No but the following workarounds may help: http://www.neilturner.me.uk/2013/07/25/how-to-rank-wifi-networks-iphone.html

  • The way iTunes ranks podcasts causes stagnant content

    Hi there,
    I'm a podcaster who has been working on a weekly show since September and I'm confused about how iTunes ranks them. Everything I have read so far has indicated that the majority of the ranking is based purely on number of new subscribers.
    There are two things that are very frustrating about this.
    Firstly, people will most likely herd and click on the top podcasts to begin with, so it becomes a self-fulfulling prophecy to an extent. The "old guard" of podcasters who started years ago sat upon their thrones in the early days of podcasting and are still there, utterly unmoveable.
    I could even live with the above if it wasn't for my second point, and that is that podcasts are not penalised for not being active or current. So for the category I am trying to get more exposure in, while I am languising 27 lines down, one of the podcasts at the very top of the page has not had an update since July 2008, one since November 2009, one since August 2010, one since August 2009, one since March 2011, and so on.
    I'm not doing a "this isn't fair" rant, it's more "surely this isn't sensible". I would have thought that Apple would WANT new, innovative, current, ACTIVE podcasts to be getting the attention. The only reason these dead (and in some cases, not very good anyway) podcasts are doing better than us is because they're already at the top (see first point). In the five months I've been doing this, the top 20 podcasts for my sector have not changed once. Surely that kind of stagnation is not good for either new podcasters or people who like podcasts, and like them to reflect the decade they're listening in?
    If I'm misunderstanding something, is there anyone who can explain for me? Or I suppose preferably, is there anyone from Apple who might be able to help with making the ranking system a little less punishing for the little (regular, active, passionate) shows like ours?
    Many thanks
    Jonny

    Yeah I've heard that too, but then we have two genuine user reviews (we don't know these people, honest!) who have given 5 stars each, and many of the shows above ours either have one or zero reviews.
    I didn't realise the Apple Support Communities had nothing to do with Apple. From everything I've read, it seems like they are completely unwilling to enter discussions on the subject, which is frustrating and a little weird to be honest.

  • Supported Memory on MS - 9652 Speedster

    Hi Guys
    I'm looking at some new memory for my system however on MSI's "revised" OVL
    None of the 5300, 2 Gb module part #'s come up good on the corresponding
    manufacturers websites soooo I'm havin a tough time trying to determine
    what will work and what won't?
    What I (we) do know -
    1 Registered is necessary
    2 ECC is recommended
    3 PC2 - 4200(533), 5300(667), and 6400(800) works but 6400 should be underclocked
    when used with lower clocked CPU's
    4 The QVL lists modules up to 4Gb @ 5300 speeds
    What I don't know -
    1 How does Ranking affect things (EG:1 rank x 8, 2 rank x 4, 2 rank x 8)?
    2 Are any Rank configurations not compatible?
    Thanks in advance

    OK, I found some interesting info:   http://www.moynetworks.com/knowledgebase/SinglevsDualRAM.pdf
    It dives pretty deep - I'm gonna start reading right now!
    Edit: Looks like a "Rank" is a 64 bit wide DRAM set so:
    A 1 Gb single Rank stick would have all 1 Gb accessible "full time" to the memory controller
    A 2 Gb dual Rank stick would have 1 Gb accessible to the memory controller at any given time -
    each Rank would carry 1 Gb and the chip select (in the memory controller?) has to "shuttle" between them
    Hmmmmmmm
    I wonder on a 2Gb stick how much performance loss there would be with 2 Rank over single Rank?
    Also are there possibly any compatibility issues?
    Thanks to any with advice!

  • Comparing the iPhone 3G with my current Japanese iPhone (trying to decide)

    I'm trying to decide whether or not to switch to an iPhone 3G now that it has been released here in Japan. I currently use an AU cell phone by Casio. I would have to switch to Softbank, but you can keep your old phone number now, so that's no problem.
    The iPhone certainly has it's attractions. It also has it's drawbacks compared to phones here. I think it adds up differently for different people depending on which features they think are important. Here is how I have been currently thinking about it. Please tell me if I got any of the iPhone features wrong!
    iPhone = how I rank the iPhone feature on a 0-10 scale
    current = how I rank my current Japanese cell phone on a 0-10 scale
    weight = how important I think the feature is on a 0-10 scale
    (1) Web Surfing - iPhone 10 / current 3 / weight 10
    The iPhone's browser is clearly the best cell phone web browser anywhere.
    (2) Camera Still - iPhone 3 / current 5 / weight 8
    My current cell phone's quality has never been pleasing, and is the same 2 megapixel resolution of the iPhone. But it does have a flash and an image stabilizer, neither of which the iPhone has.
    (3) Camera Video - iPhone 0 / current 6 / weight 8
    It really is convenient to be able to shoot videos with your cell phone these days. The iPhone may be the ONLY cell phone in the world these days without that feature, which is very inexplicable. This might be the show-stopper for me. True, I usually shoot videos with my regular camera. In fact, I usually shoot still photos with my regular camera. Still, it is a very useful feature to have.
    (4) Electronic Wallet - iPhone 0 / current 10 / weight 5
    It really is convenient to just wave your cell phone at the train wicket, or at the convenience store, or vending machine and not fuss with cash. But the fact of the matter is there is also a card version of the e-money which I also have, so I can do the same thing by waving my unopened wallet at the same devices. So I could live without this feature. Recharging the e-money by cell phone is convenient though.
    (5) Cut and Paste - iPhone 0 / current phone 5 / weight 3
    I don't often use the feature, but it is relatively easy on my current phone to mark the begin and end of a section of text and then use copy/cut/paste. I can't believe the iPhone still doesn't have something as basic as that. It probably isn't a show stopper, but it does give me pause.
    (6) Digital TV receiver - iPhone 0 / current phone 9 / weight 1
    My Japanese friend really wants a new phone with a digital TV receiver so he can watch it on the trains to and from work. On the other hand, this isn't a show-stopper for me because I very rarely use the TV feature.
    (7) Replaceable battery pack - iPhone 0 / current phone 10 / weight 2
    Most Japanese seem to be very taken aback that you can't remove and change the battery pack yourself and switch to a spare when out for a long day. That sort of bothers me too, but the fact of the matter is I've never done that with any of my previous phones, so don't think I would worry about it. I am guessing there are portable rechargers available that run on batteries, right? I've used those before.
    (8) Applications - iPhone 10 / current phone 2 / weight 10
    The iPhone clearly has all the other cell phones beat in terms of applications. I've always been very disappointed with the lack of interesting apps available for my Japanese cell phones. I am assuming there is a PDF viewer available?
    (9) Email - iPhone 7 / current phone 7 / weight 10
    I haven't used the iPhone email app so I am just guessing. I assume you can have file attachments, right? Like send photos via email? Can you have multiple attachments in one email? iPhone email isn't "push" yet, right? You have to poll for new messages. My current phone uses push technology, like a Blackberry does, so it receives email automatically as soon as it is sent.
    (10) Keyboard - iPhone ? / current phone ? / weight 10
    I still can't figure out which is easier to use. My current cell phone is easy to input in Japanese, but hard to input in English! I suspect that the iPhone is the opposite - probably easier to input in English because of the full kb, but more difficult in Japanese. Also the lack of there being buttons or tactile feedback might make it harder to user.
    (11) Display - iPhone 8 / current phone 6 / weight 10
    The iPhone's display is larger and brighter. On the other hand, my current phone's display has a higher resolution.
    (12) Music features - iPhone 10 / current phone 2 / weight 7
    Having a built-in iPod is very nice. My current phone has the AU music system built in but it doesn't work well with Macs. A Windows person might find it more useful.
    I also read about a "yellow-ish tint" problem with the new iPhones. That's something I wouldn't want to get into. Another headache with Apple over some quality problem, like I had with my iPod nano 3G that I ended up getting a refund for. I don't think I could take that right now. Has that issue been resolved?
    Thanks!
    doug

    (3) Apple didn`t include video support because of the quality of the 2 MP camera, they are known as being the best in video and photography, so enabling video would result in a poor quality, Apple`s approach on this was all or nothing.
    (9) It supports loads of attachments such as PDF, DOC, images, that can be saved to the phone, or attached right after making them from the Camera Roll, and actually it supports push email, via the "Mobile Me" service from Apple (.Mac). This requires a anual payment, but it`s not that expensive, considering that you can use it with PC`s, Macs, and your phone.
    (10) The iPhones keyboard is the best I`ve ever used, i takes about a week to write fast, and about 2 to be a pro, and I mean really fast :))
    PS: What`s your current phone ?

Maybe you are looking for

  • After Upgradation BPF is not working for some users

    Hi All, We have recently upgraded from BPC 5.1 to 7MS SP7.  we are having multi server setup with one application / reporting server (windows 2003 and one sql server 2008 (windows 2003 64 bit). Intially before upgradation we don't have any issues wit

  • Internal table decaration using "occurs 0" is obsolete! Any other ideas?

    Hi All:    I came to know that internal table declaration like shown below is obsolete in ECC6.0: Data:   Begin of i_tab occurs 0.              fld(1),              fld(2),           End of i_tab. What is the corerct way of declaring internal tables

  • Mac mini late 2012 wakes up unexpectedly with password field filling by itself

    I just upgraded from OS X Mavericks 10.9.5 to OS X Yosemite 10.10.1 and have difficulty keeping my computer asleep. I always put it to sleep using the drop down menu. Symptoms are: 1. Power light on Mac mini does not always pulsate from dim to bright

  • Time capsule does not appear in the finder.

    My time capsule appears in airport utility. It is ready to go. I have it on ethernet because airport isn't a very powerful wireless router. The time capsule does not appear in the finder. It does not appear in the disc utility. It does not appear in

  • My calendar is stuck

    My calendar is stuck on Start & End function.  Neither the "cancel" or "done" buttons respond.  What next?