Data arrangement - need help

Hi experts,
I have included the sql for the data as it is in the table and the format in which I am trying to display the data but would need your help. Many Thanks.
create table #DATA
(CustNum int,
weeknumber int,
tserial int,
code varchar(2),
amount money,
Bal money)
insert into #DATA values ( 100, 40 ,12, 'C', 13.60, 87.37)
insert into #DATA values ( 100, 41 ,15, 'D', 85.92, 73.77)
insert into #DATA values ( 100, 42 ,24, 'C' ,13.60, 159.69)
insert into #DATA values ( 100, 43 ,35, 'C',142.74, 146.09)
insert into #DATA values ( 100, 44 ,47, 'D', 85.92,3.35)
insert into #DATA values ( 100, 45, 55,'C',15.00,89.27)
select * from #DATA ORDER BY weeknumber desc
create table #Req_output
( CustNum int,
WeekNumber int,
Debit money,
Credit money,
Balance money
insert into #Req_output values(100, 45, Null, 15, 74.27)
insert into #Req_output values(100, 44, 85.92,Null, 89.27)
insert into #Req_output values(100, 43, Null,142.74,3.35)
insert into #Req_output values(100, 42, Null,13.60, 159.69)
insert into #Req_output values(100, 41, 85.92, Null,159.69)
insert into #Req_output values(100, 40, Null,13.60, 73.77)
select * from #Req_output
drop table #DATA
drop table #Req_output
Let me know if I have missed any details from the query above.
Thanks again !

Having such a balance column is not a good idea.
DECLARE @Improved TABLE
CustNum INT ,
weeknumber INT ,
tserial INT ,
code VARCHAR(2) ,
amount MONEY
INSERT INTO @Improved
VALUES ( 100, 1, 1, 'B', 87.37 ),
( 100, 40, 12, 'C', -13.60 ),
( 100, 41, 15, 'D', 85.92 ),
( 100, 42, 24, 'C', -13.60 ),
( 100, 43, 35, 'C', -142.74 ),
( 100, 44, 47, 'D', 85.92 ),
( 100, 45, 55, 'C', -15.00 );
SELECT * ,
SUM(amount) OVER ( ORDER BY tserial ASC ) AS ActualBalance
FROM @Improved
ORDER BY weeknumber DESC;
WITH Data
AS ( SELECT * ,
SUM(amount) OVER ( ORDER BY tserial ASC ) AS ActualBalance
FROM @Improved
SELECT D.CustNum ,
D.weeknumber ,
D.tserial ,
IIF(code = 'C', D.amount, NULL) AS Credit ,
IIF(code = 'D', D.amount, NULL) AS Debit ,
D.ActualBalance
FROM Data D
WHERE code != 'B'
ORDER BY D.weeknumber DESC ,
D.tserial DESC;

Similar Messages

  • I'm trying to do a FFT using I and Q Data, I need help.

    I’m collecting data on an Agilent 89600 VSA, and storing it
    to a file, it stores the data in I and Q format (real and imaginary) in 2 columns.  Can read the data then using “Re/Im to
    complex” (math function) I go to the “FFT.vi”. 
    After that is done how do I get it scaled and display it on a graph?  Everything I have tried has not worked.  If anyone can help please do.
    LabVIEW 7.1, Windows XP
    Thank you
    Bob

    Hi, Bob.
    This KnowledgeBase discusses how to display complex numbers in a graph. Let me know if this doesn't answer your question.
    Have a nice afternoon!
    Sarah K.
    Search PME
    National Instruments

  • Infoset data issues need help ASAP

    Hello BW experts,
    I have created an InfoSet, to read data from one Single ODS. The ODS has already data active, but the Query on infoset doesn’t returns any data.also i checked in listcube `without any success.
    Could you please advise me where it might be wrong. i didn't changed anything in infoset. Just created a Infoset on top of ODS.
    I tried all the options and made sure that it's not authorization issue.i deleted the ods data and loaded some test data and tried to create a query on ods it's fetching the data but no data pulling by infoset.
    something wrong inbetween infoset and ods. could you please advise me what might be wrong and how can i resolve.
    might be some issues with the generated program or some issue with the database level.
    some of the infosets i created fectching partial data , some are getting full data from ODS and some of the infosets not at all picking the data. Overall i have created about 80 Infosets.
    We are in BW 3.5. Recently upgraded the patch successfully.
    Looking forward for your precious advise.
    Thanks,
    Naveen Reddy

    just tried to go through it again, and it was close to finishing, less than a 1/2 hour left. and it got the error: "the installer is experiencing errors installing onto "Macintosh HD". The disk may be damaged, please try installing on another disk."
    does that mean i'm going to have to buy a new internal hard-drive? once again any advice will be really helpful. Thanks
    p.s. I also went and verified the disk again and it said there wasn't any issues with it. and i repaired it anyways and it said it was fine. This is super annoying
    Message was edited by: Doonyal

  • Date validation- need help

    Hi, I am trying to validate my date input from the front end which has to be in mm/dd/yyyy format only...I am unsing the code as shown below
    DateFormat dateFormatter = new SimpleDateFormat("mm/dd/yyyy");
    convertedValue = dateFormatter.parse(fieldValue);
    break;     
    but this is not working..any format is being accepted :(

    nn12 wrote:
    I tried this
    class Test1 {
    public static void main(String[] args) {
         Object convertedValue = null;
         DateFormat dateFormatter = new SimpleDateFormat("MM/dd/yyyy");
              try {
                   convertedValue = dateFormatter.parse("13/12/2008");
                   System.out.println(convertedValue);
              } catch (ParseException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    But it didnt help :(This works! the Date parsed will be: 12. jan 2009!

  • Date Picker - need help

    there is a cool date picker i downloaded from http://www.kodart.com, it looks good and easy to handle,
    but i would like to add some feautes like pop-up comments for dates, change size of the picker and so on.
    there is something a source code on their site, but i couldn't get it.
    i would really appreciate help from anyone. please write to [email protected] or reply to topic. all the information on http://www.kodart.com
    thanks in advance

    That doesnt appear to be a java applet, or class for that matter. Its PHP and JavaScript combined.
    J

  • Date confusion - need help

    Hi ,
    my data's date(DATA_ENTRY_TIME) is --> 7/29/2006 4:02:02 AM
    ques1 :
    when i run this query --> select TO_DATE(DATA_ENTRY_TIME , 'dd-mon-rr HH.MI.SS AM' ) FROM LOT_HISTORY_2DCHRT
    result : 7/29/2006
    shldn't it return the time as well ?
    ques 2 :
    i have a insert query from a selection of such criteria so as to be the same format as the DATA_ENTRY_TIME
    -->
    WHERE DATA_ENTRY_TIME >= TO_CHAR(TRUNC(SYSDATE - 6 / 24) , 'MM/DD/YYYY HH:MI:SS AM')
    AND DATA_ENTRY_TIME<= TO_CHAR(TRUNC(SYSDATE) , 'MM/DD/YYYY HH:MI:SS AM')
    and i got the error while running it
    ORA-01843: not a valid month
    ORA-02063: preceding line from PLL2
    what is wrong here actually ?
    ques 3
    select * from nls_session_parameters
    where parameter in ('NLS_DATE_FORMAT' , 'NLS_TIME_FORMAT') ;
    these are the values
    DD-MON-RR & HH.MI.SSXFF AM
    do i need to an alter session in order for ques 2 to work ??
    ques 4
    if both field are of date type but different format e.g field1 is 'dd/mm/yyyy hh:mi:ss am' and field2 is 'mon-dd-yyyy hh:mi:ss am'
    can comparision such as field1 >= field2 still be done ?
    ques 5
    if i use to_char for both field1 & field2 in ques 4 , can a comparison be done and is it accurate as it's now a string(if i am correct) ?
    tks & rdgs

    my data's date(DATA_ENTRY_TIME) is --> 7/29/2006
    4:02:02 AM
    ques1 :
    when i run this query --> select
    TO_DATE(DATA_ENTRY_TIME , 'dd-mon-rr HH.MI.SS AM' )
    FROM LOT_HISTORY_2DCHRT
    result : 7/29/2006
    shldn't it return the time as well ?What you see depends on the settings you have for displaying the data. You can change your default date format settings as follows:
    SQL> select sysdate from dual;
    SYSDATE
    08/02/2006
    SQL> alter session set nls_date_format='mm/dd/yyyy hh24:mi:ss';
    Session altered.
    SQL> select sysdate from dual;
    SYSDATE
    08/02/2006 08:08:44
    SQL>Or you can muck about with converting the dates into varchars if that's what you really want, but then if you need to do further date functionality against them you have to ensure you convert them correctly back to date format. I'd suggest that you just work with dates as oracle designed them to be and only convert to varchar (using TO_CHAR) when you really really need to.
    ques 4
    if both field are of date type but different format
    e.g field1 is 'dd/mm/yyyy hh:mi:ss am' and field2 is
    'mon-dd-yyyy hh:mi:ss am'
    can comparision such as field1 >= field2 still be
    done ?Internally the date types are stored identically. The formatting only comes into play when dates are displayed or converted to varchar so yes, if they are both stored on the database as DATE types then you can just do a straight comparison. I'm not sure how you are determining that they are "different format" unless you are querying them in different environments.
    >
    ques 5
    if i use to_char for both field1 & field2 in ques 4 ,
    can a comparison be done and is it accurate as it's
    now a string(if i am correct) ?If you convert to a varchar then you are doing a string comparison which works fine if you are doing "=", but if you are intending to do ">=" then you'll likely get some unexpected results
    SQL> select 'greater'
      2  from dual
      3  where to_date('08/02/2006 08:00:00', 'mm/dd/yyyy hh24:mi:ss') >= to_date('08/10/2005 08:00:00', 'mm/dd/yyyy hh24:mi:ss');
    'GREATE
    greater
    SQL> ed
    Wrote file afiedt.buf
      1  select 'greater'
      2  from dual
      3* where '08/02/2006 08:00:00' >= '08/10/2005 08:00:00'
    SQL> /
    no rows selected
    SQL>The second comparison using varchar doesn't work because the 4th character in the right hand string ("1") is greater than the 4th character in the left hand string ("0"). It is literally a chr for chr comparison rather than treating the whole string as a value in its own right which is what you get with dates.
    For simplicity's sake, think of dates as being stored on the database as the number of seconds since a fixed date in time. As they are purely stored as a number internally it's easy for the database to compare them. The moment you conver things to varchar you just get yourself in a mess.
    ;)

  • Core Data newbie needs help

    I am new to Core Data, so pleases forgive my ignorance. Here is what I am trying to do:
    I have two entities in my data model, one that represents a college course and one which represents a homework assignment. I want to have one of the attributes of my assignment entity be a course entity, so that I can setup my UI to display attributes of a course when a user selects an assignment to which that course is associated. How can I do this?
    Again, please forgive me if I am being too vague. Let me know if I need to clarify or post additional information.

    That link opens to a MySpace page that requires a password, so your image can't be viewed. It's not a good idea to link an image to your MySpace page anyway. Upload your image to a free image host like PhotoBucket or Flickr (or any host) and link to that.
    If you are working on the background, I hope you are working on a copy of the image or at least retaining the original image layer without modification. Editing can be tricky enough, but editing away bad editing is worse.

  • Date issue, need help on this one.

    Can anyone show me the proper ways of how to update the SQL date type?
    I can't insert records into table because of the "date" problem.
    Thanks in advance.
    Yee Hiong.
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import javax.swing.*;
    class Personal extends JFrame{
          inpPanel1 inputPanel;
          btnPanel1 buttonPanel;
          dtPersonal data;
          Date dobDate, djDate; // this one... causes problems.
          String uri;
          Connection conn;
          Statement stmtAppendTable;
          ResultSet rs;
          public Personal(){
                  super ("Personal");
                  Container c = getContentPane();
                  c.setLayout(new BorderLayout());
                  inputPanel  = new inpPanel1();
                  buttonPanel = new btnPanel1();
                  buttonPanel.btnSave.addActionListener(new ActionListener()                   public void actionPerformed(ActionEvent ae) {
                                  openDataBase();
                                  appendRecord();
                                  closeDataBase();
                  c.add(inputPanel, BorderLayout.CENTER);
                  c.add(buttonPanel, BorderLayout.SOUTH);
                  pack();
                  setVisible(true);
                  setDefaultCloseOperation(EXIT_ON_CLOSE);
          public void openDataBase() {
                  uri = "jdbc:odbc:MABA";
                  try {
                          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                  }catch (ClassNotFoundException cnfex) {
                          System.out.println(cnfex.getMessage());
                  try {
                          conn  = DriverManager.getConnection(uri);
                          stmtAppendTable = conn.createStatement(
                          ResultSet.TYPE_SCROLL_SENSITIVE,
                          ResultSet.CONCUR_UPDATABLE);
                          rs = stmtAppendTable.executeQuery("SELECT * FROM Personal");
                  }catch(SQLException sqlex) {
                          System.out.println(sqlex.getMessage());
          public void appendRecord() {
                  data = new dtPersonal();
                  data.setID(Integer.parseInt(inputPanel.tfPersonalID.getText()));
                  data.setName(inputPanel.tfName.getText());
                  if(inputPanel.rbMale.isSelected()) {data.setSex("M");}
                  else
                  if(inputPanel.rbFemale.isSelected())
                          {data.setSex("F");}
                  data.setAddress1(inputPanel.tfAddress1.getText());
                  data.setAddress2(inputPanel.tfAddress2.getText());
                  data.setAddress3(inputPanel.tfAddress3.getText());
                  data.setCity(inputPanel.tfTownCity.getText());
                  data.setState(inputPanel.cboState.getSelectedItem().toString());
                  data.setContactPhone(inputPanel.tfContactPhone.getText());
                  data.setHeight(Double.parseDouble(inputPanel.tfHeight.getText()));
                  data.setWeight(Double.parseDouble(inputPanel.tfWeight.getText()));
                  data.setStatus(inputPanel.tfStatus.getText());
                  data.setDateOfBirth(inputPanel.tfDateOfBirth.getText());
                  data.setDateJoined(inputPanel.tfDateJoin.getText());
                  dobDate = Date.valueOf(data.getDateOfBirth());
                  djDate  = Date.valueOf(data.getDateJoined());
                  try {
                          rs.moveToInsertRow();
                          rs.updateInt("Personal_ID", data.getID());
                          rs.updateString("Name", data.getName());
                          rs.updateString("Sex", data.getSex());
                          rs.updateString("Address1", data.getAddress1());
                          rs.updateString("Address2", data.getAddress2());
                          rs.updateString("Address3", data.getAddress3());
                          rs.updateString("State", data.getState());
                          rs.updateString("Town", data.getCity());
                          rs.updateString("Contact", data.getContactPhone());
                          rs.updateDouble("Height", data.getHeight());
                          rs.updateDouble("Weight", data.getWeight());
                          rs.updateDate("Date_of_Birth", dobDate);
                          rs.updateDate("Date_Joined", djDate);
                          rs.updateString("Status", data.getStatus());
                          rs.insertRow();
                          System.out.println("Data Insert Successful");
                  }catch(SQLException sqlex) {
                          System.out.println(sqlex.getMessage());
          public void closeDataBase() {
                  try {
                          rs.close();
                          stmtAppendTable.close();
                          conn.close();
                  }catch(SQLException sqlex) {
                          System.out.println(sqlex.getMessage());
          public static void main(String args[]){
                  new Personal();
    }

    It crashes when I insert a record to Access's database. I remove the date data type then it runs fine. How to solve this date problem?

  • Comparing dates problem, need help?

    the checks are not working correctly, and I am missing something. Code is below.
    for the start date check.
    1. if I put in 28-OCT-2006, I get my error message. Why wont it let me enter today and how do I fix it?
    2. If the start and stop date are the same, my SAVE button code fires. WHy? and then it still ends up commiting.
    thanks,
    HERE IS THE START DATE TEXT
    SET_ITEM_PROPERTY('DRUG_ID', Enabled, PROPERTY_FALSE);
    declare
    alert_NO varchar2(10);
    startDate date;
    systemDate date;
    begin
    startDate := :DRUG_PRICE.START_DATE;
    systemDate := sysDATE;
    --this displays at the buttom of form
    -- MESSAGE('StartDate Must be >= Today');
    if(startDate < systemDate ) then
    --this displays at the buttom of form
    MESSAGE('StartDate Must be >= Today');
    --calls the appropriate alert
    alert_NO := show_alert('STARTSYS');
    RAISE FORM_TRIGGER_FAILURE;
    end if;
    end;
    HERE IS MY SAVE BUTTON
    declare
    alert_NO varchar2(10);
    startDate date;
    stopDate date;
    begin
    startDate := :DRUG_PRICE.START_DATE;
    stopDate := :DRUG_PRICE.STOP_DATE;
    --this displays at the buttom of form
    MESSAGE('Error with the Dates');
    if(startDate > stopDate ) then
    -- calls the appropriate alert
    alert_NO := show_alert('START');
    RAISE FORM_TRIGGER_FAILURE;
    elsif (startDate <= stopDate) then
    MESSAGE('Drug Price Added Successfully.');
    commit;
    end if;
    end;

    Is this forms?
    Anyway, regarding your question, you're comparing the input date against sysdate and maybe you're sending a trunc date so sysdate is always bigger (it includes day, month,year, hour, minute and seconds). Since you're sending a truncate date you're comparing now against today 12:00:00 a.m.
    Ex:
    select sysdate from dual;
    SYSDATE
    28.10.06 23:31
    select case when to_Date('28/10/2006', 'dd/mm/yyyy')<sysdate then 'a' else 'b' end FROM DUAL;
    CAS
    a

  • Need help in using SQL in a jsp file to compare date and time

    hi every one,
    Actually I am doing a project using JSP. I need to compare a date field in the database (MS Acess) to the current system date and time. I have to do this in a select statement.
    I have alredy defined a variable of type Date in the JSP file and I am comparing this variable to the date in the database through a select statemant.
    Here is what I am doing
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
              java.util.Date today = new java.util.Date();
              String myDate=sdf.format(today);
    query = "SELECT Car_ID, Model_ID, Year, Ext_Color, Price from Cars where EDate <= "+myDate+" ;";
    EDate is the feild in the database and it's format is (5/12/2008 5:29:47 PM) it is of type Date/Time in MS Acess.
    when I execute the query it gives the following error
    SQL error:java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'EDate <= 2008-10-16 08:10:07'.
    I hope any one can help me with that error and answer my question, I've tried too many things but nothing helps
    Thanks in advance :-)

    Hi,
    When the comparision is needed to be done with the current date , we don't need to send in Java
    Date then format it and compare with MS Acess Date.
    In MS Access we have Date() function which will give you the current date.
    So you can try rewriting your query as following :
    query = "SELECT Car_ID, Model_ID, Year, Ext_Color, Price from Cars where EDate <= Date() ;"; ---------------------
    Hope this helps.
    Thanks

  • I NEED HELP FAST!!! how can i activate wi-fi if i want to use that for facebook apps instead of wasting my data?

    i want the 200 mb plan for my iphone and wanted to know if instead of using safari i can use apps such as facebook or tumblr without using up my data. i got the asnwer that i can avoid that by using wi-fi, but how does that whole thing work?
    sorry i am a bit new at this, and i need help fast!
    THANK YOU!

    hookedonlerman wrote:
    but will that replace the use of using up data? (wifi & 3G)
    It sounds as if you don't really understand what "using data" means. Data is not something different from WiFi and 3G, it's something sent over WiFi and 3G. Think of data as water and WiFi and 3G as types of pipes. Some apps need to send and receive data to work. That data can be sent or received in different ways. It can be sent over WiFi or 3G. Both official iPhone carriers in the U.S. have metered data plans. It's sounds as if you're talking about AT&T's 200 mb data plan. WiFi is not provided by your cellular carrier. You can have WiFi from your Internet Service Provider at home or you can access free WiFi at places like McDonalds or Starbucks or paid WiFi at places like airports.
    If you have WiFi turned on on your phone and WiFi is available, the phone will default to WiFi. WiFi is faster than 3G and generally not metered, and is sometimes even free. If you are out of range of WiFi, you would be using 3G to send and receive your data. With a metered plan, you need to keep an eye on how much you are using because if you go over your allowance, you will be charged additional fees.

  • I need help highlighting an expiration date on my Numbers '09 spreadsheet. I want the text/fill of a cell to change color when the expiration date of an item is within 180 days of the current date.

    I need help highlighting cells on my Numbers '09 spreadsheet.  I want the cell text/fill to change color when the date is 180 days or less from the current date.  I already have a cell with the current date in it.  I also know how to change the fill/text colors.  All the cells have been formatted to show date only.  I am having trouble with the formula.  I can get to the Conditional Formatting menu and select "With Dates" but after that I am lost.  Can anyone help?
    Thank you for any assistance.
    B

    Set a Conditional Format rule as shown in the illustration below. The rule has been applied to all dates in column B of the table.
    Regards,
    Barry

  • My ipod touch is in DFU mode 5g I need help, do not want to lose my data, please help in Spanish

    I need help, do not want to lose my data, PLEASE HELP IN SPANISH

    Una vez que el dispositivo está pidiendo ser restaurado con iTunes ... ya es demasiado tarde para salvar nada ... y usted debe continuar con la recuperación de ...
    Vea aquí> http://support.apple.com/kb/HT1808
    Es posible que tenga que probar más de una vez ... Asegúrese de seguir todos los pasos ...
    Tómese su tiempo ... Preste especial atención a los pasos 3 y 4.
    Para minimizar la pérdida ...
    Después de haber recuperado su dispositivo ...
    Re-sincronizar su contenido o restauración de la última copia de seguridad ...
    Restaurar desde copia de seguridad> http://support.apple.com/kb/ht1766
    Once the Device is asking to be Restored with iTunes... it is too late to save anything... and you must continue with the Recovery...
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    To minimise loss...
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • Need help in formatting the Date - Date does not

    Need help in formatting the Date - Date does not formats and give Not a valid month error in the below scenario.
    select oc.ST_PGM_MGR, r.ag_dnum, get_major_work_type(r.perf_eval_rtng_id) "v_work_code", r.ag_dnum_supp "supp", r.intfinal, to_char(r.formdate,'MM/DD/YYYY') "formdate", to_char(r.servfrom,'MM/DD/YYYY') "srv_from", to_char(r.servto,'MM/DD/YYYY') "srv_to", descript, add_months(to_char
    --- Bellow line of Code on trying to format it to mm/dd/yyyy gives the error
    (r.formdate, 'DD-MON-YYYY'),12) "formdate2"
    from  table REdited by: Lucy Discover on Jul 7, 2011 11:34 AM
    Edited by: Lucy Discover on Jul 7, 2011 1:05 PM

    Your syntax is wrong - look at the post above where this syntax is given:
    to_char (add_months(r.formdate,12), 'MM/DD/YYYY') "formdate2"Look at the formula from a logical perspective - "inside out" to read what is happening -
    take formdate, add 12 months
    add_months(r.formdate, 12)then apply the to_char format mask - basic syntax
    to_char(date, 'MM/DD/YYYY')Compare to your syntax:
    to_char(add_months(r.formdate, 'MM/DD/YYYY'),12) "formdate2"You will see your format string inside the call to add_months, and your 12 inside the call to to_char.
    Good luck!

  • I sign in tol my Firefox is out of date. did try to do the upgrade but did not work need help

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/978554 /questions/978554]''
    I need help to get my sign in working. Need to upgrade?
    how to do that?
    <sub>edit: removed personal information for your protection. (philipp)</sub>

    I sign in told my Firefox is out of date. did try to do the upgrade but did not work. Need help
    Let me know how to get my sign in working

Maybe you are looking for

  • Linking Form to Document

    I have a question regarding linking a form to a document. The form is located at this site: http://mdotcf.state.mi.us/public/webforms/public/3093test.pdf and it is linked to the document at this site http://www.michigan.gov/documents/mdot/Application

  • TV shows in the UK Store

    Is there any news about tv shows being allowed on the UK Music Store. Because, Lost is really boring in the UK, because we are only up to episode 12 of series 1

  • Did anyone have this problem?Please Read

    Can anyone tell me if they had the problem that the screen froze with a song's info. You can still listen to songs but the screen DOES NOT change. I can even turn it off but the screen will not shut off. Does anyone know how to fix this??

  • When typing an email, when I go to next line, it skips two lines instead of one line. How do I correct it?

    I was typing an email and when I would go to the next line, it will skip two lines instead of one line. How do I correct the problem?

  • Can't open app world

    Hi!  Hope someone can help me fix this problem.  I can't open the app world application on my Bold 9780.  I've deleted the app, downloaded it from start again - but still won't open.  Any suggestions?  Everything else is working fine!