Struggling with IF statment results

How would I write an IF formula that would produce the following (if not and IF, what would produce the following results)?
If A1= "A" then "Truck", ="B" then "Car" = "C" then "Motorcycle", otherwise "N/A"
Thank you,
Deacon

While a set of nested IF statements will work well for a small set of values, such as your sample, it rapidly gets unwieldy as the number of values increases. For more than three possibilities (plus "N/A"), one of the LOOKUP functions is easier to use (and to edit, when necessary).
Here's an example:
There is one formula, inserted in B2 of Main, then filled down to all cells in column B:
B2: =IFERROR(VLOOKUP(A,lookup :: A:B,2,FALSE),"N/A")
I've used VLOOKUP as it allows setting he requirement for a an exact match (The FALSE value appears as "exact match" in the formula as seen in Numbers.).
A value not on the lookup list, including 'no value entered', creates an 'not found' error. IFERROR is used to trap that error, and rturn the "N/A" value.
The beauty of the lookup functions is that if the list of possible codes and matching items increases, there's no need to edit the formula. All the editing can be done in the lookup table. Here, four items have been added to the lookup table. and a second survey, including some of these items, has been recorded. The formula in column B of the table Main is the same as above.
Regards,
Barry

Similar Messages

  • Hi there. I hoping for help.   I am struggling with both...

    hi there. I hoping for help.
    I am struggling with both my WRT54G router set-up and i can't seem to use your online chat system. I hope that you can help.
    I have just moved from Hong Kong to New Zealand and I'm trying to install my WRT54G, bought in Hong Kong, to connect to a Telstra braodband internet connection, but when I follow the instruction CD-ROM I get to the point (number 6 - although this point is numbered 7 in the instructions?!?) when I have connected the router it then says it is checking my settings and then it asks me to put in a password. It then checks my system again and then asks me for the password again, and this repeatedly. I can't get past this point. Because this was happening I pushed the reset button on the back of the router, but it still asks me for a password (I have tried using admin as the password without success) and then goes through the check and asks me for the password again. Any help would be great.
    Thanks.
    Michael Anthony

    What windows OS are you running? It may have not installed correctly.
    First go to control panel in start menu, then add/remove programs. it should be in there.
    If you do not see it there then go to programs files and see if it is there. if so you can delete the folder it is in, then run disk clean up.
    By manually setting up did this work? would like to know the end results.

  • Please help with a query were struggling with.

    Any help please, were struggling to get the result we require.
    We have Scheduled data returned from another program(job table). Shows our jobs 1 through 9 and the time that each job is loaded on a machine.
    i.e. if you look at the job table, job 1 is using machine 1 between 01-01-08 08:00 and 10-01-08 10:00.
    We then have a calendar table that shows our hours the machine is able to work.
    So machine 1 is available between 9-5.30 mon-fri but is not available on sat and Sunday.
    What we need to do is produce a graph that shows the time per day each machine is loaded.
    So if you see the result at the bottom, were hoping for something similar which shows for each machine, every day it is loaded and for how many hours.
    Thanks in advance
    Job TABLE with 4 columns
    JOB NUMBER
    MCR NUMBER
    START DATE
    FINISH DATE
    1,1,01-01-08 08:00, 10-01-08 10:00
    2,1,02-01-08 08:00, 03-01-08 10:00
    3,1,04-01-08 08:00, 04-01-08 10:00
    4,1,26-01-08 08:00, 26-01-08 10:00
    5,1,19-01-08 08:00, 26-01-08 10:00
    6,1,20-01-08 08:00, 21-01-08 10:00
    7,2,01-01-08 08:00, 10-01-08 10:00
    8,2,02-01-08 08:00, 03-01-08 10:00
    9,2,05-01-08 08:00, 06-01-08 10:00
    Calender TABLE WITH 3 COLUMNS
    MCR     NUMBER
    START     DATE
    END     DATE
    1,MON 09-30, MON 17-30
    1,TUE 09-30, MON 17-30
    1,WED 09-30, MON 17-30
    1,THU 09-30, MON 17-30
    1,FRI 09-30, MON 17-30
    1,SAT 00-00, MON 00-00
    1,SUN 00-00, MON 00-00
    RESULT
    MCR
    DATE IN USE
    HOURS IN USE
    1,01-01-08,8
    1,02-01-08,16
    1,03-01-08,16
    1,04-01-08,10
    1,05-01-08,0
    1,06-01-08,0
    etc
    Obviously these are not real figures but hopefully you get the idea!

    Thanks Keith.
    SQL> create table job_table
      2  as
      3  (
      4  select 1 machine_id,to_date('01-01-08 08:00','dd-mm-yy hh24:mi') started, to_date('10-01-08 10:00','dd-mm-yy hh24:mi') finished fr
    om dual union all
      5  select 1,to_date('02-01-08 08:00','dd-mm-yy hh24:mi'), to_date('03-01-08 10:00','dd-mm-yy hh24:mi') from dual union all
      6  select 1,to_date('04-01-08 08:00','dd-mm-yy hh24:mi'), to_date('04-01-08 10:00','dd-mm-yy hh24:mi') from dual union all
      7  select 1,to_date('26-01-08 08:00','dd-mm-yy hh24:mi'), to_date('26-01-08 10:00','dd-mm-yy hh24:mi') from dual union all
      8  select 1,to_date('19-01-08 08:00','dd-mm-yy hh24:mi'), to_date('26-01-08 10:00','dd-mm-yy hh24:mi') from dual union all
      9  select 1,to_date('20-01-08 08:00','dd-mm-yy hh24:mi'), to_date('21-01-08 10:00','dd-mm-yy hh24:mi') from dual union all
    10  select 2,to_date('01-01-08 08:00','dd-mm-yy hh24:mi'), to_date('10-01-08 10:00','dd-mm-yy hh24:mi') from dual union all
    11  select 2,to_date('02-01-08 08:00','dd-mm-yy hh24:mi'), to_date('03-01-08 10:00','dd-mm-yy hh24:mi') from dual union all
    12  select 2,to_date('05-01-08 08:00','dd-mm-yy hh24:mi'), to_date('06-01-08 10:00','dd-mm-yy hh24:mi') from dual
    13  );
    Table created.
    SQL> create table calendar_table as
      2  (
      3  select 1 machine_id,'MON 09-30' startdate , 'MON 17-30' enddate from dual union all
      4  select 1,'TUE 09-30', 'TUE 17-30' from dual union all
      5  select 1,'WED 09-30', 'WED 17-30' from dual union all
      6  select 1,'THU 09-30','THU 17-30' from dual union all
      7  select 1,'FRI 09-30','FRI 17-30' from dual union all
      8  select 1,'SAT 00-00','SAT 00-00' from dual union all
      9  select 1,'SUN 00-00','SUN 00-00' from dual
    10  );
    Table created.
    SQL> select j.machine_id
      2       , trunc(j.startdate) day_in_use
      3       , sum
      4         (  least(j.enddate,trunc(j.startdate) + (c.enddate-trunc(c.enddate)))
      5          - greatest(j.startdate,trunc(j.startdate) + (c.startdate-trunc(c.startdate)))
      6         ) * 24 hours_in_use
      7    from ( select j.machine_id
      8                , greatest(j.started,trunc(j.started) - 1 + row_number() over (partition by j.rowid order by null)) startdate
      9                , least(j.finished,trunc(j.started) + row_number() over (partition by j.rowid order by null)) enddate
    10             from job_table j
    11                , table
    12                  ( cast
    13                    ( multiset(select null from dual connect by level <= trunc(j.finished) - trunc(j.started) + 1)
    14                      as sys.dbms_debug_vc2coll
    15                    )
    16                  ) t
    17         ) j
    18       , ( select machine_id
    19                , substr(enddate,1,3) dayofweek
    20                , to_date(substr(startdate,5),'hh24-mi') startdate
    21                , to_date(substr(enddate,5),'hh24-mi') enddate
    22             from calendar_table
    23            where enddate not like '___ 00-00'
    24         ) c
    25   where c.machine_id = j.machine_id
    26     and c.dayofweek = to_char(j.startdate,'DY','nls_date_language=american')
    27   group by j.machine_id
    28       , trunc(j.startdate)
    29   order by j.machine_id
    30       , trunc(j.startdate)
    31  /
                                MACHINE_ID DAY_IN_USE                                    HOURS_IN_USE
                                         1 01-01-2008 00:00:00                                      8
                                         1 02-01-2008 00:00:00                                     16
                                         1 03-01-2008 00:00:00                                    8.5
                                         1 04-01-2008 00:00:00                                    8.5
                                         1 07-01-2008 00:00:00                                      8
                                         1 08-01-2008 00:00:00                                      8
                                         1 09-01-2008 00:00:00                                      8
                                         1 10-01-2008 00:00:00                                     .5
                                         1 21-01-2008 00:00:00                                    8.5
                                         1 22-01-2008 00:00:00                                      8
                                         1 23-01-2008 00:00:00                                      8
                                         1 24-01-2008 00:00:00                                      8
                                         1 25-01-2008 00:00:00                                      8
    13 rows selected.Regards,
    Rob.

  • I need to disable to microphone recording thing on imessage, sent recordings to people by accident twice now with near disastrous results!

    How do I disable the microphone recording thing on imessage?  Siri is not activated but still the icon for the microphone is there and twice I have sent recordings by mistake - NOT good!

    Thank you.  I just wanted to check I was not being totally dim, such a shame there is no way to disable it, I struggle with my dexterity and have somehow managed to push, hold, record and send things to two different people today, totally by accident but with unpleasant results!
    Hopefully Apple will move/change this function so that it can be disabled.  For sure I am not the only one who has made this mistake!
    Thank you for your quick reply.
    Gill

  • Is anybody else struggling with an intermittent connection when using the Magic Mouse/Trackpad ONLY on Boot Camp?

    Hi,
    I've seen thousands of posts about Bluetooth connection issues and interference and stutter/lag for both the Magic Mouse and Trackpad (affecting both Mac OS X and Windows under Boot Camp) but my problem is different.
    To summarise my setup, I use:
    - Retina MacBook Pro (lid closed or open, doesn't make a difference to this problem)
    - Thunderbolt Display
    - Wireless Keyboard
    - Magic Trackpad (have also tried a Magic Mouse and experience similar issues to the Trackpad)
    And in Mac OS X, everything works perfectly. The keyboard and trackpad work smoothly when I'm 6-7 metres from the machine, whether or not the laptop lid is open or closed, and whether or not the Thunderbold Display is connected.
    But on to my problem: the bluetooth connection is incredibly unreliable/intermittent when in Windows (I run Windows 7 64-bit and Boot Camp 4.0, and got both devices connected without any trouble via Bluetooth).
    But during usage, the cursor stutters/lags frequently, and tap to click (when enabled) seems to get triggered by mistake all the time (even when I'm not touching the Trackpad or even at the computer, clicks get registered).
    The Wireless Keyboard is perfect, and works well 5 metres from the machine. The Mouse and Trackpad, though, don't even work reliably when they are 6 inches from the machine. The built-in trackpad on the laptop works perfectly too, in Windows and Mac.
    I spent a week assuming I was suffering from Bluetooth interference, so I tried:
    - using the laptop with the lid open
    - removing the Thunderbolt display completely and trying the Magic Trackpad
    - repositioning items on my desk
    - disabling wifi
    All of these adjustments made minor differences to how good/bad the Trackpad was, but none came close to fixing the problem or making it work as smoothly as under Mac OS X. It was only after doing all of this that I realised perhaps it was just a Apple driver for Windows issue, so I booted into Mac OS X and tested everything out, and sure enough, it's all perfect. But back into Windows, the Trackpad doesn't work reliably at all.
    Obviously, the hardware is not at fault, and I assume the signal strength doesn't vary between operating system (why would it?) so I'm left believing this must be a driver issue. The TrackPad and Magic Mouse drivers have been out for a couple of years, so I'm surprised they can still be this bad. I tried both the latest driver from Boot Camp 4.0 (3.2.0.0) for the Trackpad, and also the older one from Boot Camp 3.2 (3.1.0.7) and both are equally bad for me.
    So my question is: has anybody else struggled with using the Trackpad (or Magic Mouse) with Boot Camp 4.0 and Windows 7 64-bit, whilst finding it to be perfect under Mac OS? I haven't found many posts complaining about the Windows driver, which is why I assumed it was an interference issue. But I'm almost sure it isn't, having spent 2 weeks investigating.
    Any thoughts/suggestions/answers much appreciated!
    Kyle

    SOLVED!
    After much testing, I have found the cause of lagging/jumpiness on the Bluetooth Magic Mouse and Magic TrackPad in Boot Camp. Hopefully this will help others:
    The drivers for the Broadcom 802.11n Wireless Adapter have a setting called "Bluetooth Collaboration" that is Disabled by default. Enabling this option removes the problem instantly. My Magic Trackpad now works flawlessly, even if I stand 6 metres from the machine. It now works just as well as under Mac OS. The setting can be found under:
    Control Panel > Device Manager > Network Adapters > Broadcom 802.11n Network Adapter (right click and choose "Properties". Under the "Advanced" tab, highlight the setting named "Bluetooth Collaboration", then change it to Enable. Then click OK.
    I narrowed the problem down to the wireless card by disabling ALL startup services and processes for Windows, then re-enabling one by one. As soon as I enabled the Windows Wireless Service, the problem came back. Similarly, disabling the Wireless Card inside the Network and Sharing Center (or Device Manager) removes the problem. This led me to believe it must be a driver issue with the wireless card, since the problem didn't occur with the Magic TrackPad under Mac OS, or on my mother's Windows 7 64-bit computer. So when I went into the Driver Properties to check for an update, I found this setting about Bluetooth Collaboration.
    I really hope this helps others trying to use Bluetooth devices under Boot Camp. All Apple notebooks use the Broadcom card (and have done for years), so this driver is installed for almost anybody using Boot Camp on an Apple notebook. I'd assume this problem would affect anybody using Boot Camp + wifi + a Bluetooth device.
    Cheers

  • I recently purchased FaceTime from the Application Store. After approx. ±10 meg, the application resets and starts downloading again. I have tried to download it at different times of the day but with the same results. I have been in contact with Apple su

    I recently purchased FaceTime from the Application Store. After approx. ±10 meg, the application resets and starts downloading again. I have tried to download it at different times of the day but with the same results. I have been in contact with Apple support and have tried different options with the same result. I cannot download a new Version because in my Purchased List the applicaiton (FaceTime) is still there, and because I have halted it it tells me to resume. I can’t, because the same thing is going to happen. I have tried all the various troubleshooting tips supplied by my ISP and also Apple Support with no luck. I am currently working on a IMac OS 10.6.7. Has anybody got any ideas? Any suggestion would help. Thanks

    Amol Soni wrote:
    As I said, I tried everything what the manual says, but hard luck. I have taken an appointment for today, lets see what happens.
    Also there is no activity on unit when I use the remote. The unit is stuck on the first page itself where we have to choose the language. The unit seems to be fine to me but the real problem is remote does'nt have activity. The IR is not responding while pressing any of the button.
    Good luck with your appointment.
    Not much consolation but even new products can have issues and might need a trip to a store to return/replace.
    The reason i asked about the LED on the AppleTV is that occasionally it thinks it's paired with a specific remote and ignores others - the unpair keypress I described is quick and free.
    AC

  • Firefox plays video, but no sound. when I type about:plugins in location bar, it shows the firefox default plugin is not enabled. When I look at my plugins, it says it is enabled. I have uninstalled 3.6 and re-installed with the same result.

    firefox plays video, but no sound. when I type about:plugins in location bar, it shows the firefox default plugin is not enabled. When I look at my plugins, it says it is enabled. I have uninstalled 3.6 and re-installed with the same result. Why do I have no sound. Computer plays I-tunes and all other sounds, just no web browser sounds.

    Glad you seem to have sorted things out.
    The warning about the warranty is light hearted, I think at one stage it warned "here be dragons" but also intended to make us think as it warns that making changes may produce problems.

  • How can I make multiple quizzes with their own results slides within one project of Captivate 7?

    In one Captivate 7 project I want to create multiple quizzes with their own results slide. 
    Currently I have 5 quizzes that all are linked to 1 results slide.
    Is there a way to give each set of questions their own results slide?
    (I saw a response to a similar question for Captivate 5 from 2012, but I couldn't get much use out of is and I figured there was an easier way in Captivate 7).
    Any help would be appreciated!
    Thanks!

    Thanks for the reply Lilybiri!
    I checked out the link and it's useful, however your other plan might work better for me:
    Either you link to separate CP-files that have each their quiz, or you can show intermediate results slides (see link below), but you have to know that the score that will be transmitted to a LMS is the total score of all the quizzes.
    But how exactly do I link separate CP-files?  Do I have to publish them first and then link them, or can I link them before I publish?
    If you could shoot me a link or some advice I'd greatly appreciate it.  I'm finishing up a huge project that is due at the end of the day and this quiz issue is one of the last things keeping me from being finished.
    Thanks!

  • Please help me! I am struggling with the mesh tool!

    So I want to make this chair look like it does in the picture, but I cant! There is a chapter in my Illustrator CS3 book explaining how to use gradient mesh and mesh tool, but it doesnt help me at all. I am clueless!   The tutorial says that I can create points in the mesh simply by clicking with the mesh tool within an object, but when I try to do that, the pointer is "crossed out". I can only add extra points on lines or edges, but not on empty space within an object. What gives? Why is it that others can do it an I cant? Forgive me if I sound a little too upset, but I've been struggling with this for days and I cannot find an answer.
    In this tutorial right here: http://www.layersmagazine.com/illustrator-gradient-mesh-tool.html the guy just clicks in empty spaces creating intersections. In my case it is impossible.
    PS: Please look at an attached file and tell me what would be the best way to go about coloring this chair. Maybe I am doing this completely wrong? (I only started learning illustrator about 5 weeks ago)
    Sorry for the background template being of poor quality, but this was taken from a book and scanned, so it's the best I could do.

    You know something I think there should be a behavioral change in this case. To my way of thinking this option should automatically be disabled if you select the Mesh tool. If for some reason you want the mesh tool not to behave the way there might be a toggle or a double click to get the preferences for the tool 's behavior itself. I can see where this behavior can be useful but there needs to be a toggle.
    Selecting the anchors for adding color with out accidentally creating a new mesh division is good thing but you need to be able to work both ways.
    What do you think Scott Weichert you use the tool extensively, am i wrong?

  • How can i plot a histogram with using the results of Line Length

    PLS HELP.How can i prepare a histogram with using the results of line length code(It is somewhere in the middle).
    This is a final exam take-home question. I would appreciate if you can help?
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import java.text.*;
    import java.io.File;
    public class WordAnalyser extends JFrame implements ActionListener
    private JMenuItem jmiAc, jmiSil, jmiCikis, jmiAnaliz, jmiHakkinda, jmiKullanim;
    private JTextArea jta1, jta2;
    private JFileChooser jFileChooser = new JFileChooser();
    File hafizada;
    File aktarilan = new File("Sonuc.txt");
    // Main method
    public static void main(String[] args)
    WordAnalyser frame = new WordAnalyser(); /* Ana ekran olusturulur */
    frame.setSize(400, 300); /* Degerleri belirlenir */
    frame.setVisible(true); /* Gorunebilirligi ayarlanir */
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    public WordAnalyser()
    setTitle("Serkan Ozgen Dosya Inceleme Programina Hos Geldiniz");
    JMenuBar mb = new JMenuBar();
    setJMenuBar(mb);
    JMenu fileMenu = new JMenu("Dosya");
    fileMenu.setMnemonic('F');
    mb.add(fileMenu);
    JMenu helpMenu = new JMenu("Degerlendirme");
    helpMenu.setMnemonic('H');
    mb.add(helpMenu);
    JMenu kullanimMenu = new JMenu("Kullanim Kilavuzu");
    mb.add(kullanimMenu);     
    fileMenu.add(jmiAc = new JMenuItem("Ac", 'A'));
    fileMenu.add(jmiSil = new JMenuItem("Sil", 'S'));
    fileMenu.add(jmiCikis = new JMenuItem("Cikis", 'C'));
    helpMenu.add(jmiAnaliz = new JMenuItem("Analiz", 'D'));
    helpMenu.add(jmiHakkinda = new JMenuItem("Hakkinda", 'H'));
    kullanimMenu.add(jmiKullanim = new JMenuItem("Kullanim"));     
    getContentPane().add(new JScrollPane(jta1 = new JTextArea()), BorderLayout.CENTER);
    getContentPane().add(jta2 = new JTextArea(), BorderLayout.SOUTH);
    jmiAc.addActionListener(this);
    jmiSil.addActionListener(this);
    jmiCikis.addActionListener(this);
    jmiAnaliz.addActionListener(this);
    jmiHakkinda.addActionListener(this);
    jmiKullanim.addActionListener(this);
    public void actionPerformed(ActionEvent e)
    String actionCommand = e.getActionCommand();
    if (e.getSource() instanceof JMenuItem)
    if ("Ac".equals(actionCommand))
    Ac();
    else if ("Sil".equals(actionCommand))
    Sil();
    else if ("Cikis".equals(actionCommand))
    System.exit(0);
    else if ("Analiz".equals(actionCommand))
    sayim();
    else if ("Hakkinda".equals(actionCommand))
    JOptionPane.showMessageDialog(this,
    "!!!! Bu program text analizi gerceklestirir. Her hakki saklidir SERKAN OZGEN!!!!",
    "Bu program hakkinda",
    JOptionPane.INFORMATION_MESSAGE);
    else if ("Kullanim".equals(actionCommand))
         JOptionPane.showMessageDialog(this,
         " Ilk once dosya menusunden Ac i tiklayarak analiz etmek istediginiz Dosyayi seciniz (Lutfen uzantisi *.txt \nveya *.log olsun). Daha sonra Degerlendirme menusunden analizi tiklarsaniz dosyanizda kac adet rakam, harf, \ncumle ve kelime oldugunu gorebilirsiniz. Simdiden kolay gelsin",
         "Programin kullanim detaylari",
         JOptionPane.INFORMATION_MESSAGE);
    private void Ac()
    if (jFileChooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION)
    hafizada = jFileChooser.getSelectedFile();
    Ac(hafizada);
    // Acilan Dosyayi ana ekranda gostermeye yariyan bir method
    private void Ac(File file)
    try
    // Acilan dosyayi okuma ve ana ekranda gosterme
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(file));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta1.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    // Temizle tusunun hangi ekranlara etki edecegini secme
    private void Sil()
    jta1.setText("");
    jta2.setText("");
    private void sayim()
    int buff;
    int sayac = 0;
    int Cumleler = 0;
    int Kelimeler = 0;
    int Karakterler = 0;
    int Satirlar = 0;
    int Rakamlar = 0;     
    boolean start = true;
    int linenum = 0;     
    try
    FileInputStream instream = new FileInputStream(hafizada);
    FileOutputStream outstream = new FileOutputStream(aktarilan);
         BufferedReader infile = new BufferedReader(new InputStreamReader(new FileInputStream(hafizada)));
    PrintStream out = new PrintStream(outstream);
         out.println("---Kelime Avcisinin Sonuclari---");
         String line = infile.readLine();
         while (line != null){
         int len = line.length();
         linenum++;
         line = infile.readLine();
         out.println("Line Length :"     + linenum + "\t" +len);
    while ((buff=instream.read()) != -1)
    switch((char)buff)
    case '?': case '.': case '!': /* Eger "?", "." veya "!" gorurse program cumleleri ve kelimeleri arttirir*/
    if (start == false)
    Cumleler++;
    Kelimeler++;
    start = true;
    break;
    case ' ': case '\t': case ',': case ';': case ':': case'\"': case'\'': /* Eger /t,;:\ ve \" bu isarteleri goruruse program kelimeleri arttirir */
    if (start == false)
    Kelimeler++;
    start = true;
    break;
              case 'n': case '\n': /* Eger \n gorurse satirlari arttirir */
              if (start == false)
                   Satirlar++;
                   Kelimeler++;
                   start = true;
              break;
    default:
    if (((char)buff >= 'a' && (char)buff<='z')|| /*a-z, A-Z veya - degerlerini gorurse karakterler arttirilir */
    ((char)buff >= 'A' && (char)buff<='Z')||
    ((char)buff == '-'))
    Karakterler++;
    if ((Kelimeler % 50) == 49)
    if (start == true)
                   out.println();     
    out.print((Kelimeler+1) + " ");
    out.print((char)buff);
    start = false;
              if ((char)buff >='0' && (char)buff <='9') {  /* 0-9 gorurse rakamlari arttiri */
                   Rakamlar++; }
    }// switch
         }//while
    instream.close();
    out.println();
    out.println();
    out.println("Karakter sayisi: " + Karakterler);
         out.println("Kelime sayisi: " + Kelimeler);
    out.println("Cumle sayisi: " + Cumleler);
         out.println("Satir sayisi: "+ Satirlar);
         out.println("Rakam sayisi: "+ Rakamlar);
    outstream.close();
    try
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(aktarilan));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta2.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    catch (Exception e)
    System.out.println(e);
    }

    Why is it that you're not interested in IOExceptions?
    catch (IOException ex)
    } Empty catch blocks is a hallmark of foolish Java code. At least print out the stack trace.
    %

  • Error message: "Warning: unresponsive script". Afterward, the system freezes and will then crash. Crash reports have been submitted many, many times without response. I have tried the fore-mentioned solutions with either no results or very bad results

    Error message: "Warning: unresponsive script". Afterward, the system freezes and will then crash. Crash reports have been submitted many, many times without response. I have tried the fore-mentioned solutions with either no results or very bad results which I filed a report but did not receive an answer. The application to block scripts actually worsened the problem and I could not correct the situation for a while (no response from Firefox, at all). I have also been through this procedure without any one contacting me, AT ALL.
    == URL of affected sites ==
    http://http://www.facebook.com (always) and www.YouTube.com (sometimes)

    There does appear to be any support whatsoever from mighty "non caring" FIREFOX & people are getting fed up. We may as well try another system, if they can't be bothered to provide any support for their system, we can't be bothered to use their system.
    Brianeng

  • I have continuously over the last 6 months struggled with syncing my iphone and ipod with itunes  The app continually crashes during the picture import.  AND by the way it takes 10-15 minutes before it even attempts to import photos.  The screen says impo

    I have continuously over the last 6 months struggled with syncing my iphone and ipod with itunes  The app continually crashes during the picture import.  AND by the way it takes 10-15 minutes before it even attempts to import photos.  The screen says importing photoes but doesnt try to optimize or anything for 10 minutes.  I have a 3gs with 16Gb so its not a cheap phone.  I have 10Gb free.  I have 6600 photoes.  This is very frustrating and undermines my confidence in your products.  My ipod is an ipod 4 with 16Gb also.  It does the exact same thing to it.  The last time, I had to import photoes a few at the time and with it taking 10-15 minutes each time for 6600 photos it is a long frustrating process.  But it will import every photo a few at a time.  The error message is just that itunes has stopped working.  no hint as to why. AND of course, my phone is out of use for the entire time.  You guys must not want to believe ur phones are a necessary tool...or maybe you dont want the consumer to believe it is.  I have tried to find solutions on your website as well as through other 3rd party communities.  Ultimately they were of no use.  I stumbled onto my solution by accident since Im a bit of a computer geek...a semi-geek.

    I have this issue too, I went into my Windows event viewer. (should have looked at this a year ago when this started)
    it said this
    Faulting application name: iTunes.exe, version: 11.0.2.26, time stamp: 0x51253247
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b8f
    Exception code: 0xc0000374
    Fault offset: 0x000ce6c3
    Faulting process id: 0x14d4
    Faulting application start time: 0x01ce194399f166ba
    Faulting application path: C:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\Windows\SysWOW64\ntdll.dll
    Report Id: 0eb3c37f-8537-11e2-9351-50465d6737de
    basically whenever I try to sync my ipod touch 4G 64GB it crashes iTunes when it begins the pictures. if im lucky ill get 4-5 on there before it stops responding. its not my system or anything im running win7x64 8GB DDR3 ram (Corsair XMS3) AMD FX Eight core processor.
    It is silly that iTunes cannot add pictures to apple devices. it shatters whatever incline I may have to buy apple products. knda like the Airport Extreem router my dad bought the new firmware, caused my router to not function... why release firmware that breaks a product. -_- <-- off topic but still

  • Downloaded iOs 5.0.1 but songs did not restore to my phone. Tried to synch to iTunes today and it prompted me to "restore" my phone again. Did that but songs did not restore. Each time I try to synch, it prompts me to restore with the same result. Help!

    When I first downloaded iOS 5.0.1 on Monday night I received an error message (I didn't capture it, sorry). So I re-attempted. After downloading and restoring my phone from backup, it prompted me again to restore my phone. I complied. And it prompted me to restore my phone from the backup again. I tried it again with the same result. Finally frustrated I stopped.
    I didn't realize until the next day that my music was empty on the phone. I tried to synch today to get my songs back on the phone and instead it AGAIN asked me to restore my phone from the backup. I complied but my music is still missing. I need help!
    Please note I am using iTunes as the backup storage on my PC, I haven't turned on iCloud because I don't have wireless service in my home.
    I am soooo frustrated right now. I need my music to go running in the morning.
    Any tips would be greatly appreciated!

    Make sure iTunes is up to date and try again.

  • Adobe Acrobat 8 Professional cannot be launched at this time. You must launch at least one other Suite component before launching Adobe Acrobat 8 Professional. I do exactly this with not positive result.

    Adobe Acrobat 8 Professional cannot be launched at this time. You must launch at least one other Suite component before launching Adobe Acrobat 8 Professional. I do exactly this with not positive result.

    Hey Sue,
    Considering this error, I would suggest you to please refer the KB doc link given below:
    Error "Acrobat 8 Professional cannot be launched" | CS3
    Hope it helps.
    Regards,
    Anubha

  • Pages not loading anymore. I have tried reinstalling with the same results

    I have iWork 09 on my MBP with the i7 (1 version back from the current model with the Thunderport). Software worked fine for many months but now when I try to start Pages or Keynote I get an error message saying it can not load the library. I tried to uninstall the software and reboot then reinstalled it and did an update to the app with the same results.

    Deleting the program's preference list is the #1 trouble-shooting step with any misbehaving application. Go to HD > Users > (your account) > Library > Preferences, delete the com.apple.iwork.pages.plist, empty the Trash & then restart Pages. Repeat with Numbers & Keynote. This needs to be done for each user.
    There are two things to do that solve a lot of problems with the iWork ’08 &/or ’09 apps in Snow Leopard.
    First, use the
    Mac OS 10.6.6 combo updater. This fixes a problem with fonts that is not fixed using the delta update (10.6.1 > 10.6.2). Because of font & other issues with 10.6.7, I prefer to stick with 10.6.6. You can find the 10.6.7 combo updater
    here  
    Second, make sure your iWork applications are updated. For iWork '08 that is Pages 3.0.3 & Numbers 1.0.3. For iWork '09 it's Pages 4.0.5 & Numbers 2.0.5. If you're not running the latest versions & Software Update says your software is up to date, make sure the applications are where the installer initially put them. The updaters are very picky. If the location is not where the updater is programmed to look or if the folder doesn't have the name the updater looks for, it will not work. The applications cannot be renamed or moved. They must be in the iWork '08 or iWork '09 folder in Applications. That iWork folder must be named iWork '08 or iWork '09. If it doesn't have the '08 or '09 Software Update won't find them & the updaters won't work.
    Also, when deleting iWork, you need to make sure you get all of the components.
    The files to delete are the iWork ’09 folder from the main HD > Applications; the iWork ’09 folder in HD > Library > Application Support & the individual iWork application plist files found in HD > Users > (your account) > Library > Preferences for each user.
    Yvan Koenig has written an AppleScript that removes the files. You can find it on
    his iDisk in For_iWork > iWork '09 > uninstall iWork '09.zip.

Maybe you are looking for