SUM (CASE Problem -

Can't seem to get the ELSE element of this SUM(CASE query to
work - any suggestions gratefully received.
SUM(CASE WHEN MonthID = 1 THEN CASE WHEN COS_State = 1 THEN
COS_Value * (dbo.Value_Calc.Probability / 100) END ELSE COS_Value
END)
This doesnt bring back the correct COS_Value in the Else part
- it brings back the total
If I try
SUM(CASE WHEN MonthID = 1 THEN CASE WHEN COS_State = 1 THEN
COS_Value * (dbo.Value_Calc.Probability / 100) END ELSE CASE WHEN
MonthID = 1 THEN COS_Value END)
this gives an incorrect syntax at )
help please....

Thanks
Still not there - trying an AND statement but doesnt like the
syntax at 'when'
SUM(CASE WHEN MonthID = 1 AND COS_State = 1 THEN COS_Value *
(dbo.Value_Calc.Probability / 100) ELSE WHEN MonthID = 1 AND
COS_State = 2 THEN COS_Value ELSE 0 END) AS N1,

Similar Messages

  • SUM(CASE WHEN statement is not returning proper result.

    Hi Folks,
    I'm an end-user on OBIEE 11g creating a custom analysis. I'm trying to SUM a particular case statement: SUM(CASE WHEN "MyMeasureColumn.Here" LIKE '%~25~%' OR "MyMeasureColumn.Here" LIKE '%~26~%' OR "MyMeasureColumn.Here" LIKE '%~27~%' OR "MyMeasureColumn.Here" LIKE '%~28~%' THEN 1 ELSE 0 END)
    The result should be about 6,700 however I am getting only 1,900. Any ideas?

    >
    Ive done a manual validation of the statement (in excel) and know its near 6700. I think it has something to do with the type of data it is?
    >
    Well there are only three possibilities that I can think of.
    1. The data in Excel is different than the data in Oracle
    2. The 'manual validation' is different than what the query that you are using does
    3. Both #1 and #2
    You are the only one with access to the data.
    You are the only one that has any idea what your 'manual validation' was.
    If necessary you will need to use the brute force 'divide and conquer' method.
    Use a small amount of data and compare your 'manual validation to your query results. If they are not the same figure out why.
    If they are the same then repeat the process with another set of the data.

  • SUM(Case how to use this structure to get average values over date range

    I am using:
    Oracle SQL Developer (3.0.04) Build MAin-04.34 Oracle Database 11g Enterprise Edition 11.2.0.1.0 - 64bit Production
    How do I use the sum function with a case structure inside.
    so I have data that looks like has an ID, date, and value. I am looking to get the 7 day average for the date range of 4/1/2013 thru 4/20/2013
    with t as (
    select 1 ID_Key,to_date('4/1/2013','mm-dd-yyyy') date_val, 10 Value_num from dual union all
    select 1 ID_key,to_date('4/2/2013','mm-dd-yyyy'), 15 from dual union all
    select 1 ID_key,to_date('4/3/2013','mm-dd-yyyy'), 20 from dual union all
    select 1 ID_key,to_date('4/5/2013','mm-dd-yyyy'), 0 from dual union all
    select 1 ID_key,to_date('4/8/2013','mm-dd-yyyy'), 12 from dual union all
    select 1 ID_key,to_date('4/9/2013','mm-dd-yyyy'), 8 from dual union all
    select 1 ID_key,to_date('4/10/2013','mm-dd-yyyy'), 6 from dual union all
    select 1 ID_key,to_date('4/12/2013','mm-dd-yyyy'), 10 from dual union all
    select 1 ID_key,to_date('4/13/2013','mm-dd-yyyy'), 0 from dual union all
    select 1 ID_key,to_date('4/14/2013','mm-dd-yyyy'), 0 from dual union all
    select 1 ID_key,to_date('4/15/2013','mm-dd-yyyy'), 10 from dual union all
    select 1 ID_key,to_date('4/16/2013','mm-dd-yyyy'), 5 from dual union all
    select 1 ID_key,to_date('4/17/2013','mm-dd-yyyy'), 2 from dual union all
    select 1 ID_key,to_date('4/20/2013','mm-dd-yyyy'), 3 from dual union all
    select 2 ID_key,to_date('4/3/2013','mm-dd-yyyy'), 12 from dual union all
    select 2 ID_key,to_date('4/5/2013','mm-dd-yyyy'), 15 from dual union all
    select 2 ID_key,to_date('4/6/2013','mm-dd-yyyy'), 5 from dual union all
    select 2 ID_key,to_date('4/7/2013','mm-dd-yyyy'), 7 from dual union all
    select 2 ID_key,to_date('4/9/2013','mm-dd-yyyy'), 10 from dual union all
    select 2 ID_key,to_date('4/11/2013','mm-dd-yyyy'), 5 from dual union all
    select 2 ID_key,to_date('4/12/2013','mm-dd-yyyy'), 0 from dual union all
    select 2 ID_key,to_date('4/13/2013','mm-dd-yyyy'), 0 from dual union all
    select 2 ID_key,to_date('4/15/2013','mm-dd-yyyy'), 6 from dual union all
    select 2 ID_key,to_date('4/16/2013','mm-dd-yyyy'), 8 from dual union all
    select 2 ID_key,to_date('4/17/2013','mm-dd-yyyy'), 0 from dual union all
    select 2 ID_key,to_date('4/18/2013','mm-dd-yyyy'), 10 from dual union all
    select 2 ID_key,to_date('4/19/2013','mm-dd-yyyy'), 5 from dual
    )**Please let me know if the table does not load.
    I would like to get the 7 day average as long as there is date for that row has enough previous dates, it not then it will return null.
    the results should look like this
    ID_Key      date_val     Value_num     7Day_Avg     7Day_Avg2
    1     4/1/2013     10          null          null
    1     4/2/2013     15          null          null
    1     4/3/2013     20          null          null
    1     4/5/2013     0          null          null
    1     4/8/2013     12          6.71          11.75
    1     4/9/2013     8          5.71          10.00
    1     4/10/2013     6          3.71          6.50
    1     4/12/2013     10          5.14          9.00
    1     4/13/2013     0          5.14          7.20
    1     4/14/2013     0          5.14          6.00
    1     4/15/2013     10          4.86          5.67
    1     4/16/2013     5          4.42          5.17
    1     4/17/2013     2          3.85          4.50
    1     4/20/2013     3          2.86          4.00
    2     4/3/2013     12          null          null
    2     4/5/2013     15          null          null
    2     4/6/2013     5          null          null
    2     4/7/2013     7          5.57          9.75
    2     4/9/2013     10          7.00          9.80
    2     4/11/2013     5          6.00          8.40
    2     4/12/2013     0          3.86          5.40
    2     4/13/2013     0          3.14          4.40
    2     4/15/2013     6          3.00          4.20
    2     4/16/2013     8          2.71          3.80
    2     4/17/2013     0          2.71          3.17
    2     4/18/2013     10          3.43          4.00
    2     4/19/2013     5          4.14          4.83As you may notice, there are gaps in the dates, so the value are then treated as zeros for the 7Day_Avg and then ignored for teh 7Day_Avg2 (not counted as number of days averaged do to no valu_num row)
    I was trying something like this to start, but getting error "missing keyword"
    select
    t.*/,
    sum(
          case
            when date_val between :day2 - 6 and :day2
            then value_num between date_val - 6 and date_val
            else null
            end
            as 7Day_avg
    form tShould I have the case structure outside the sum function?
    Any thoughts??
    Edited by: 1004407 on Jun 7, 2013 11:06 AM

    Hi,
    If you want the average of the last 7 days, including the current day, then then RANGE should be 6 PRECEDING, not 7.
    Try this:
    WITH     got_min_date_val AS
            SELECT  id_key, date_val, value_num
            ,       MIN (date_val) OVER () AS min_date_val
            FROM    t
            WHERE  date_val BETWEEN TO_DATE ('04-01-2013', 'mm-dd-yyyy')
                             AND   TO_DATE ('04-20-2013', 'mm-dd-yyyy')
    SELECT    id_key, date_val, value_num
    ,         CASE
                  WHEN  date_val >= min_date_val + 6
                  THEN  SUM (value_num) OVER ( PARTITION BY  id_key
                                               ORDER BY      date_val
                                               RANGE         6 PRECEDING
                        / 7
              END  AS avg_7_day
    ,         CASE
                  WHEN  date_val >= min_date_val + 6
                  THEN  AVG (value_num) OVER ( PARTITION BY  id_key
                                               ORDER BY      date_val
                                               RANGE         6 PRECEDING
              END   AS avg_7_day_2
    FROM      got_min_date_val
    ORDER BY  id_key
    ,         date_val
    Output:
       ID_KEY DATE_VAL   VALUE_NUM  AVG_7_DAY  AVG_7_DAY_2
             1 01-APR-13         10
             1 02-APR-13         15
             1 03-APR-13         20
             1 05-APR-13          0
             1 08-APR-13         12       6.71        11.75
             1 09-APR-13          8       5.71        10.00
             1 10-APR-13          6       3.71         6.50
             1 12-APR-13         10       5.14         9.00
             1 13-APR-13          0       5.14         7.20
             1 14-APR-13          0       5.14         6.00
             1 15-APR-13         10       4.86         5.67
             1 16-APR-13          5       4.43         5.17
             1 17-APR-13          2       3.86         4.50
             1 20-APR-13          3       2.86         4.00
             2 03-APR-13         12
             2 05-APR-13         15
             2 06-APR-13          5
             2 07-APR-13          7       5.57         9.75
             2 09-APR-13         10       7.00         9.80
             2 11-APR-13          5       6.00         8.40
             2 12-APR-13          0       3.86         5.40
             2 13-APR-13          0       3.14         4.40
             2 15-APR-13          6       3.00         4.20
             2 16-APR-13          8       2.71         3.80
             2 17-APR-13          0       2.71         3.17
             2 18-APR-13         10       3.43         4.00
             2 19-APR-13          5       4.14         4.83
    Message was edited by: FrankKulash
    Sorry; I meant to reply to OP, not to Greg

  • Count vs sum(case) on dates in select statement

    I'm writing a statement to count the number of events occuring within 7 days of creating and also within 31 days of creating. I tried count but the script never completd. I've written this below - does anyone have a better idea on how to access the data? Thanks -
    select /*+ INDEX(CW_DOCUMENTS_IDX1) */ b.create_dt,
    sum(case when b.create_dt <= a.event_dt - 7 then 1 else 0 end),
    sum(case when b.create_dt <= a.event_dt - 31 then 1 else 0 end)
    from cw4_audit_index a, cw_documents b
    where a.docseq = b.docseq
    and a.medrecno = b.medrecno
    and a.account = b.account
    group by b.create_dt
    /

    Dianna,
    Just in case you’re still checking the thread … another explanation for the “never completed” symptom.
    Assuming a “cw_documents” row is created on “create_dt” and subsequently related “cw4_audit_index” event rows are created with a “event_dt” timestamp … then <quote>count[ing] the number of events occurring within 7 days of creating and also within 31 days of creating</quote> would be something like:
    case when cw4_audit_index.event_dt <= cw_documents.create_dt +  7 then 1 else 0 end
    case when cw4_audit_index.event_dt <= cw_documents.create_dt + 31 then 1 else 0 endor to use your own query:
    select /*+ INDEX(CW_DOCUMENTS_IDX1) */
           b.create_dt
          ,sum(case when a.event_dt <= b.create_dt +  7 then 1 else 0 end)
          ,sum(case when a.event_dt <= b.create_dt + 31 then 1 else 0 end)
    from   cw4_audit_index  a
          ,cw_documents     b
    where  a.docseq   = b.docseq
    and    a.medrecno = b.medrecno
    and    a.account  = b.account
    group by b.create_dt
    /With your version of the sql … didn’t you find cases of rows in your result set having more “within 7 days” events than “within 31 days”? … should’ve been a red flag right there.
    In my skimpy desktop, on a table with ~24K documents and ~1.44M events (some 60 events for each document, half of them within 31 days) I got the query in around 10 seconds … tables analyzed and no indexes in site … you’re probably fine here with nice/fat full table scans.
    Since an “within 7 days” event also/always qualifies as an “within 31 days” one … one could improve the above query by specifying an extra predicate:
    select b.create_dt
          ,sum(case when a.event_dt <= b.create_dt +  7 then 1 else 0 end)
          ,sum(case when a.event_dt <= b.create_dt + 31 then 1 else 0 end)
    from   cw4_audit_index  a
          ,cw_documents     b
    where  a.docseq   = b.docseq
    and    a.medrecno = b.medrecno
    and    a.account  = b.account
    and    a.event_dt <= b.create_dt + 31  --<< extra predicate
    group by b.create_dt
    /at which moment the second “sum” in the select list can be replaced with “count(*)” … the improvement percentage is based on your event distribution (how many events get filtered out up-front) … in my case, 10-25%.
    Cheers.

  • Combining Sum/Case queries with different where clauses into one query

    Hello,
    I'm trying to combine 2 queries that contain the SUM/CASE function into one query that'll produce the output in the same table, rather than having two The thing is, the two queries have different conditions. I've created a sample data table and outputs to better describe what I'm trying to achieve.
    SAMPLE_DATA
    DEPT
    PROD_CODE
    FLAG1
    FLAG2
    HO
    A
    NULL
    Y
    HO
    B
    NULL
    Y
    HO
    A
    Y
    NULL
    HO
    B
    Y
    Y
    IT
    A
    NULL
    Y
    IT
    C
    NULL
    NULL
    ENG
    B
    NULL
    Y
    ENG
    C
    NULL
    Y
    ENG
    C
    Y
    Y
    MKT
    A
    Y
    Y
    The first query I'm running is to sum the product codes department wise while checking if FLAG1 is Y. The second query is checking if FLAG2 is Y.
    First Query:
    select DEPT, sum(case PRODUCT_CODE when 'A' then 1 else 0 end),
    sum(case PRODUCT_CODE when 'B' then 1 else 0 end),
    sum(case PRODUCT_CODE when 'C' then 1 else 0 end)
    from SAMPLE_DATA where FLAG1 is not null group by DEPT;
    Second Query:
    select DEPT, sum(case PRODUCT_CODE when 'A' then 1 else 0 end),
    sum(case PRODUCT_CODE when 'B' then 1 else 0 end),
    sum(case PRODUCT_CODE when 'C' then 1 else 0 end)
    from SAMPLE_DATA where FLAG2 is not null group by DEPT;
    FIRST QUERY OUTPUT:
    DEPT
    PRODA_FL1
    PRODB_FL1
    PRODC_FL1
    HO
    1
    1
    0
    IT
    0
    0
    0
    ENG
    0
    0
    1
    MKT
    1
    0
    0
    SECOND QUERY OUTPUT:
    DEPT
    PRODA_FL2
    PRODB_FL2
    PRODC_FL2
    HO
    1
    2
    0
    IT
    1
    0
    0
    ENG
    0
    1
    2
    MKT
    1
    0
    0
    My aim is to combine both the queries so that the output is displayed the same way as the table below.
    DESIRED OUTPUT:
    DEPT
    PRODA_FL1
    PRODB_FL1
    PRODC_FL1
    PRODA_FL2
    PRODB_FL2
    PRODC_FL2
    Any help or tips will be greatly appreciated. Please note I'm working with more complex data and have simplified my question just to understand how to solve this.

    Just treat the two queries as tables, join them on DEPT and produce the results you want.
    with q1 as (
    select DEPT, sum(case PRODUCT_CODE when 'A' then 1 else 0 end) PRODA_FL1,
    sum(case PRODUCT_CODE when 'B' then 1 else 0 end) PRODB_FL1,
    sum(case PRODUCT_CODE when 'C' then 1 else 0 end) PRODC_FL1
    from SAMPLE_DATA where FLAG1 is not null group by DEPT),
    q2 as (
    select DEPT, sum(case PRODUCT_CODE when 'A' then 1 else 0 end) PRODA_FL2,
    sum(case PRODUCT_CODE when 'B' then 1 else 0 end) PRODB_FL2,
    sum(case PRODUCT_CODE when 'C' then 1 else 0 end) PRODC_FL2
    from SAMPLE_DATA where FLAG2 is not null group by DEPT;
    select q1.dept, proda_fl1, prodb_fl1, prodc_fl1, proda_fl2, prodb_fl2, prodc_fl2
    from q1, q2
    where q1.dept = q2.dept

  • Suppressing Footer by Sum Summary Problem - MSSQL float field?

    I'm evaluating CR2008 and came to a problem I can't find an answer to.
    I'm summarizing quantity of shares in a transaction log and if the sum is zero should suppress the Footer as there is no quantity to report.  This works for 95%+ of cases but there are instances where the zero is not being supressed.  I'm not sure this is a problem with MSSQL's float field or if it is a problem with CrystalReports.
    I have a suppression formula as follows:
    If Sum({Transactions.Quanity, {Securities.Description}) = 0 Then
        True
    Else
        False
    This works as I stated for most instances.  But some it will display a 0.0000000000 (testing with the largest rounding and decimals to see if there is a rounding problem).
    The values are stored in a MSSQL database and the quantity field is of type 'float'.  As a test I queried the database for one of the failing instances with query "select quantity from transactions where portfolioid=XXXX and symbolid=YYYY".  This returns 52.732 and -52.732.  If I where to change the suppression formula to
    If Sum({Transactions.Quanity, {Securities.Description}) <= 0.0000000001 And
    Sum({Transactions.Quanity, {Securities.Description}) >= -0.0000000001 Then
        True
    Else
        False
    the suppression works correctly.  Could someone shed some light on this issue?

    Debi is the one that is correct but it still is something weird about it.  When I do the multiplication by 10000000000, I get some trailing fractions converted into a zero value as expected like 527320000001.  But if I do the same multiplication in an query on MSSQL, ie. "select quantity * 10000000000 from transactions where portfolioid=XXXX and symbolid=YYYY" I do not get the trailing fractions but the numbers I would hope to get 527320000000.  Somewhere along the way the float is converted into a number on CrystalReports and the fractions are not kept as is on database.  Null values are not allowed on database schema so those would not be an issue.

  • CASE problem

    The statement below has encountered a problem in forms.
    select (case when a.code >=b.code then a.code else b.code
         when a.code >=c.code then a.code else c.code end) test
    from (select max(y.code) code from table1 x) a
    (select max(z.code) code from table2 y) b
    (select max(z.code) code from table3 z) c
    where a.code= b.code(+)
    and a.code = c.code(+)
    I'm trying to get the maximum code from the 3 tables.
    Can anyone help me with this?

    Opps... this is the correct statements..
    select (case when a.code >=b.code then a.code else b.code
    when a.code >=c.code then a.code else c.code end) test
    from (select max(x.code) code from table1 x) a
    (select max(y.code) code from table2 y) b
    (select max(z.code) code from table3 z) c
    where a.code= b.code(+)
    and a.code = c.code(+)

  • T410 lots of case problems

    Hi, in advance i'm sorry for my language misstakes, i'm from poland.
    I'm new user of ThinkPad T410. laptop got to my hands about 2 weeks ago and only few days ago I spotted that there are 2 or 3 places on the lower part of case that are flexing under pressure - under touchpad, whole edge of the case is bending. but the worst thing is that lock from opening the case is giving annoying sound when moved, it's sound of stretched small spring. does anyone have such problems? is it classifing under quarranty? thanks for any help and tips. sorry for misstakes once again. cu

    This kind of problem must to be solved by warranty. Call customer service and they will inform you how to proceed.
    Regards.
    IPnaSh
    First Spanish Community Guru - Colaborador ad honorem

  • Case problems

    Okay, so I have a MSI K8N Neo Platinum motherboard fitted with an AMD Athlon 64 3700+ (socket 754) in my Thermaltake Soprano case. This case came with a panel with 1 firewire connection, 2 USB connections and a Mic/audio port.
    The problem is, I can't get the USB or Firewire connection to work. The mic/audio ports are not connected to the motherboard or to a soundcard and the FireWire isn't connected to the motherboard. The USB cables are connected like they should be. (Doublechecked from the case and motherboard manual, had my brother (student/teacher in Åbo Akademi) check the connections too, but they don't work at all.
    I can't find anything in the bios (AwardBIOS (I use version 1.7, found from MSI's website)) which would hint in the direction of "enable extra usb" or something.
    So does anyone know if it's possible for me to get the panel to work?

    i would guess that you just put in the connectors the wrong way around. usually, all the usb ports are enabled by default, either if they are on the mobo's I/O pannel or just as a connector on the mobo's PCB.

  • Commission Case problem in ICM module

    Hi Experts,
    Currently i am working in Icentive and commission management(ICM). I am facing a problem.
    My functional consultant has maintained the number range for commission case. When i am trying to create the commission case by transaction CACS_BDTI_SEL_01 (or by commission system transaction CACS), it shows the error that 'No number range available for application (application name)processing'. Is the any other configration needed for rectifying this error.
    Or else would i missing anything before creation of commission case?
    If any link is available regarding Commission case creation and configraion?
    your suggestions will be most welcome.
    Warm Regards,
    Shirish

    Problem solved by myself.
    I don't know the reason, but when i unchecked the "Batch' and 'Dialog' checkbox during declaration of number range it start working..

  • Nokia E90 case problem.

    Hello
    I've had my nokia e90 for a year or two now. It works great, its an amazing phone. The only issue I have with it is that the case 'peels off'. Similar to the effect you get when acid rain affects paint on houses. I found a replacement in Malaysia but they couldn't guarantee that I wouldn't get the same problem again and they had no warranty so I didn't take it. In the images I attached,I have a different battery cover because the original has completely corroded.
    Attachments:
    1.jpg ‏199 KB
    2.jpg ‏194 KB
    3.jpg ‏151 KB

    Unfortunately there is nothing that anyone can do to help you here. We don't know the circumstances that caused it to peel or the substances it's been in contact with.
    If you want a genuine case you need to visit a nokia care point and ask them to fit it for you.
    http://europe.nokia.com/support/repair-and-recycle/repair/care-points

  • SWITCH CASE PROBLEM?

    CODE
    function Position(object:MovieClip, location:top || left):void
         switch(top:Boolean, bottom:Boolean)
              case top = true:
                   object.y = 0;
                   break;
              case bottom = true:
                   object.x = 0;
                   break;
    Position(object,location);
    COMPILER ERRORS
    Scene 1, Layer 'Actions', Frame 1, Line 1 1084: Syntax error: expecting rightparen before logicalor.
    Scene 1, Layer 'Actions', Frame 1, Line 3 1084: Syntax error: expecting rightparen before colon.
    Obviously there is some problems with the code.

    I thinl u need something like this
    function Position(object:MovieClip, location:String):void
         switch(location)
              case "top":
                   object.y = 0;
                   break;
              case "bottom":
                   object.x = 0;
                   break;
    Position(object,"top");
    or
    Position(object,"bottom");
    http://www.darshanrane.com

  • Bumper Case Problem.. Can't contact apple

    Hi! I ordered for the bumper case last July.. it was supposed to be delivered 2 weeks ago.. but I still didn't get it. Can't seem to contact Apple Customer Service either. Anybody here got the same problem? Is there any other way I can contact Apple for this?
    I know.. its just free.. but we still have to get it right? I also ordered a few stuff after that.. and I am quite scared I won't be able to reach any customer server representative from Apple in case I encounter deliver problems.
    Thanks in advance for helping!

    I received an email from Apple on 09/09 stating that my free bumper will be delivered by 20/09.
    It's 22/9 now and I still haven't received it. I called DHL this morning (because my call to Apple was not answered after an hr) and DHL said that Global Mail is their only service which is not trackable.
    Why didn't Apple send it via a trackable service? Isn't it bad enough that iPhone4 has known antenna issues to begin with??
    So basically, if it's lost in transit, you can't prove it and they won't do anything about it

  • Graphite case problem

    I have a clamshell graphite that has a problem with the rubber trim around the front of the unit.
    It has started to come away from the plastic case.
    Can it be re-attached without much trouble.
    It is only a cosmetic issue, but if I want to upgrade to a newer one,
    it will affect the selling price.
    Any ideas? I tried a clear glue but it eventuall came undone.
    iBook SE Graphite Firewire   Mac OS X (10.3.9)   Airport Card / 320 MB RAM
    iBook SE Graphite Firewire   Mac OS X (10.3.9)   Airport Card / 320 MB RAM
    iBook SE Graphite Firewire   Mac OS X (10.3.9)   Airport Card / 320 MB RAM

    Hey I was wondering if you ever found a way to repair this problem because now I have the same problem! The front plastic strip has started pulling away from the front of my blueberry clamshell.
    Please post if you have a solution!
    Thanks!

  • Laptop case problem

    last time my keyboard was faulty and a keypad was fell out, then i took it to the service center, the people replaced my keyboard. recently i have noticed that the case was protuberant at the place where the keypad fell out last time, i dont know how to discribe this problem, how can i tell the service center and tell them the problem? or someone can help me about this?
    This question was solved.
    View Solution.

    Hi,
    Take a digital photo of the problem.
    Post it to photobucket or another image hosting site and link to it in a post in your thread so we can see exactly what you are talking about.
    Your description sounds as if the laptop was not put back together correctly at the service center.
    If and when you send it back for repair, include photos with red circles amd arrows to point out where the issue is.
    regards,
    erico 
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

Maybe you are looking for

  • Help on  Setting logical Levels  in Fact tables and on Dimension tables

    Hi all Can any body provide any blogs or any king of material on what exactly is levelling . Like after creating the Dimensional hierarchies we need to set the logical levels for the LTS of fact tabels ri8 .So what is the difference between setting l

  • I have acrobat pro but I can't open pdf files now.

    I have acrobat pro  But since a few days ago I can't open any pdf file anymore.If I try with reader I do,but not with acrobat pro. I need help please.

  • Hello All

    i am using Adobe Reader XI and Adobe Acrobat 8 Standard. i am using the Secure tab>Password Encrypt and i am wondering if i can edit the printings restrictions in order to allow limited printings. Thank you

  • Buisiness rules in bpel

    How to Create a rule in Oracle Business Rules Rule Author and how to create a Decision Service Partner Link in BPEL that referers the Rule Repository and implement the same in a BPEL process. can anybody help me with an example...

  • SQL Query to SSRS Expression

    How can I convert the below two queries in SQL to SSRS expression? 1) DATEADD(MONTH,DATEDIFF(MONTH,0,@DateFrom),0) 2) DATEADD(DAY,-1,DATEADD(MONTH,DATEDIFF(MONTH,0,@DateTo)+1,0))  Thank you,