Breakdown of total percentage in matrix

Hi I am amending a report that wasn't created by me.
I have a matrix table that looks like this (month is the column group and code is the data value
Columns
Month
Code(Sum(field.value)),Sum(Field2.value))
This brings back the following
Mar  Apr       May    Jun     Jul     Aug   Sep
0%  100%   0%     0%     33%   0%    32%
What I would like to do is to break these percentages down by a row group. but When I add a row group to the matrix it doesn't give the rigth values
This is how I would like it to look
           Mar Apr      May    Jun    Jul       Aug     Sep
Ins1     0%  80%    0%     0%    23%    0%      15%
Ins2     0%  20%    0%     0%    10%    0%      17%
 Total   0%  100%   0%     0%    33%    0%     32%   
Any help would be greatly appreciated.
Regards

It is a mixture of custome code and expression
Public Function Divide(ByVal first As Double, ByVal second As Double) As Double
If second = 0 Then
Return 0
Else
Return first / second
End If
End Function
the main expression is
=Code.Divide(
Sum(iif(Fields!KI.Value="Yes",1,0))
,Sum(iif(isnothing(Fields!KO.Value)=true,0,1))

Similar Messages

  • How to calculate difference and percentage in matrix report dynamic columns in SSRS 2008

    Hi Friends,
    I need to calculate Difference and Percentage In matrix report SSRS 2008
    1) Row grouping based On Product
    2) Column Grouping Week and Fiscal Year Current week  and Previous Year same Weeks 
    3)Data Invnetory(Value fileld)
    Example:
    If value1 and Value2 Available we need to calculate Percentage and Difference.Otherwise Not required NA I need to Show.
    For example If Particular week,Current year data is available,Previous year  week data is not available No
    need to cal Diff and Percentage we need to show Empty.
    Below Code is working for If two values is available.
    If any one of the fiscal year week data is not there it's taking some garbage values.
    I tries with If condition in GetPCT() and GetDiff() It's not working.
    Can some one please help me on this.
    I am using the custom code 
    Public Shared Value1 as String
    Public Shared Value2 as String
    Public Shared previous as string
    Public Shared previousweek as string
    Public Shared Function GetValue(Value as String,partner as String,Week as String) as String
    If partner =previous and Week =previousweek Then
    Value2=Value
    Else
    previous=partner
    previousweek=Week
    Value1=Value
    End If
    return Value
    End Function
    Public Shared Function GetDiff()
    return Value2-Value1
    End Function
    Public Shared Function GetPct()
    return (Value2-Value1)/Value1
    End Function
    How to handle this.
    Thank You, Manasa.V

    Hi veerapaneni,
    According to your description, if one of the fiscal year week doesn’t have data, the custom code returns false results.
    For your requirement, if NULL value exists in the database, we should replace it as zero then perform calculate. So within the code, we should judge whether the value is NULL. To achieve your goal, please refer to the steps below:
    1. Create a table like below.
    create table dif4
    ([Product Group] varchar(50),
    [Week] varchar(50),
    [Fiscalyearweek] varchar(50),
    value int
    insert into dif4 values
    ('Desktops','W01','FY14W01',0),
    ('Desktops','W01','FY15W01',45),
    ('Desktops','W02','FY14W02',null),
    ('Desktops','W02','FY15W02',30),
    ('Desktops','W03','FY14W03',12),
    ('Desktops','W03','FY15W03',50),
    ('Notebooks','W01','FY14W01',35),
    ('Notebooks','W01','FY15W01',56),
    ('Notebooks','W02','FY14W02',45),
    ('Notebooks','W02','FY15W02',87),
    ('Notebooks','W03','FY14W03',75),
    ('Notebooks','W03','FY15W03',105),
    ('Tablets','W01','FY14W01',34),
    ('Tablets','W01','FY15W01',46),
    ('Tablets','W02','FY14W02',49),
    ('Tablets','W02','FY15W02',96),
    ('Tablets','W03','FY14W03',42),
    ('Tablets','W03','FY15W03',113)
    2. Add the custom code in the Report Properties.
    Public Shared Value1 as Integer
    Public Shared Value2 as Integer
    Public Shared previous as string
    Public Shared previousweek as string
    Public Shared Function GetValue(Value as Integer,product as String,Week as String) as Integer
    If Value=Nothing Then
    Value=0
    End If
    If product =previous and Week =previousweek Then
    Value2=Value
    Else
    previous=product
    previousweek=Week
    Value1=Value
    End If
    return Value
    End Function
    Public Shared Function GetPct()
    If Value1=0 Then
    return 0
    Else
    return (Value2-Value1)/Value1
    End If
    End Function
    Public Shared Function GetDiff()
    return Value2-Value1
    End Function
    3. Design the matrix like below.
    4. Then get the expected results.<o:p></o:p>
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Page level totals in a matrix report

    hi all,
    Is it possible to have any kind of page level totals in a matrix report??
    i tried it manually, but it gave me an error as follows,
    REP-1266: Column '<column name>': Page Level columns are not allowed in a Cross Product.
    Thanks
    Martin

    Martin,
    Is one of your report Repeating frames set to break on pages? If so, then go to the data model and create the variables you need inside the group of the repeating frame. If you are doing a summary column, don't forget to set the repeat at: property correctly. Then just carefully add the fields to the layout. The matrix layout can be very difficult to work with so what I do is carefully expand out all the frames so they are not overlapping with the outermost frame being on the very outside. Use the Fill Color setting on the layout to paint the frames so you can see what is sitting on top of what. It may take a few shots to get it right.
    Have you worked with Oracle analytic functions? They can really make your life easy by doing all of the summing at various levels. Also look into GROUPING SETS they are the bomb! Check out the URL below for more info:
    http://orafaq.com/node/55
    Good luck,
    matt

  • How to count and calculate total percentage for field

    hi all,
    i have two tables as follow:
    i have a inner join as follow :
    SELECT distinct dbo.Motor_Story.Name, dbo.Goods.kala, dbo.Goods.type, dbo.Goods.id_story FROM 
    dbo.Goods INNER JOIN dbo.Motor_Story ON dbo.Goods.id_story = dbo.Motor_Story.Id
    I have the following data are entered
    in my database,
    type
    kala
    no
    Panaconic                       
    Monitor
    1
    Sony                            
    Telvision
    2
    Samsung                         
    Phone
    3
    Vaio                            
    Computer
    4
    Panaconic                       
    Monitor
    5
    Sony                            
    Telvision
    6
    Panaconic                       
    Phone
    7
    Panaconic                       
    Printer
    8
    Sony                            
    Computer
    9
    Panaconic                       
    Monitor
    10
    Sony                            
    Telvision
    11
    Samsung                         
    Phone
    12
    Panaconic                       
    Printer
    13
    i want create a view so that, count 'dbo.Goods.type' and calculate total percentage of ' dbo.Goods.type, than other products based on 'dbo.Goods.kala'.
    pls hlp me.
    best regards.

    Hi,
    Welcome to MSDN.
    I am afraid this is not the proper forum for this issue, since it is not a specific vb.net issue.
    I would suggest you consider posting this issue in sql forum for more dedicated support.
    http://social.msdn.microsoft.com/Forums/en-US/home?category=sqlserver
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Sar command to find out total percentage of memory utilisation for a day.

    Hi,
    I am in a process of taking last 10 days average percentage of memory, CPU and Disk utilisation in solaris8.
    Can any one help me regarding in this.
    I found sar command and I got the details of CPU by using #sar -u -f sa23 command.
    For memory If I try sar command with �r option , it gives only free memory details only.
    #sar -r -f sa23
    00:00:01 freemem freeswap
    01:00:00 173009 14301230
    Average 172860 14302592
    Is there any way to find out total percentage of memory used?
    And also
    Total percentage of disk utilisation also in solaris8?

    vvsha wrote:
    # sar -r -f sa25
    00:00:00 freemem freeswap
    01:00:00 172847 14303687
    02:00:00 172816 14301232
    22:00:00 172680 14304828
    23:00:01 172676 14304467
    Average   172674 14302768
    Average value of freemem is 172674.The average amount of free memory over the course of a day doesn't seem to be that useful. I'd want to look for the low points (see if we're close to running out during some periods).
    Is this value in Megabytes?
    # man sar
         -r    Report unused memory pages and disk blocks:
               freemem
                     average pages available to user processes.So it's in pages. You can use 'pagesize' to verify your page size. On modern SPARC systems, it will be 8KB.
    from this value can we calculate total memory utilized for this day? like totalmem - freemem = usedmem Depending on what you mean by utilized, yes. Memory can be used for a disk cache, but that use is not shown by decreasing freemem. Uses that are counted are kernel reservations, runtime pages for applications, and direct memory allocations (malloc, etc.)
    Darren

  • SSRS 2008 - Expression for totals in a Matrix

    Hi,
    I have a simple Matrix with the following groups:
    Row Group: Program
    Column Group: Employee
    I need to add a new total column on the right side of the matrix using a simple calculation but I haven't been able to find how to do that other than doing it on the query side. Here's how the Matrix looks like:
    Program
    Employee1
    Employee2
    Employee3
    New Column
    Program1
    45.0%
    0.0%
    87.5%
    Program2
    12.5%
    50.0%
    3.8%
    Program3
    28.8%
    1.3%
    8.7%
    Program4
    1.3%
    23.8%
    0.0%
    Total
    87.6%
    75.1%
    100.0%
    The new column should display the sum of each program divided by the sum of all totals....for example for Program1 the calculation should be (45+0+87.5)/(87.6+75.1+100) which should be equal 50.44% ...the same logic applies for the other
    rows.
    The number of columns (Employees) and rows (Programs) are dynamic, so they change according to who is seeing the report. I'm unable to reference the sum of the total at the bottom row, not sure what I am missing.
    Any input on this is greatly appreciated.

    Hi Cleber,
    I have tested on my local environment and your issue can be caused by you haven't include the scope in the sum function, please find details information below about how to do the calculation:
    Please design the matrix like below:
    You can find the Row Group name is "Program" and the Column Group name is "Empolyee", this will include in the sum expression as below:
    Expression1: =SUM(Fields!Amount.Value,"Empolyee")
    Expression2: =SUM(Fields!Amount.Value,"Program")
    Expression2: =Sum(Fields!Amount.Value,"Program")/Sum(Fields!Amount.Value,"DataSet1")
    Preview you will got the result like below:
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Row total percentage of Column

    Have a request to display both the row and column totals in a pivot table, no problem. But what about also including a the percentage that each row total represents of the column total:
    Example:
    orders
    Item jan feb march total % of total
    a 1 3 5 9 40%
    b 2 2 3 7 33%
    c 3 1 2 6 27%
    total 6 6 10 22 100%
    Thanks.....

    In the pivot table view click on the measures and "Duplicate" the measures column and display the total as percentage of the row or column based on your requirement. That way you will be able to display both the toals and percentages together
    hope it helps
    Thanks
    Prash

  • Attempting to Display Total/Percentage in Answers when grouped by Attribute

    Hi all,
    I'm relatively new to BI and attempting the following setup. (I'm simplifying the model somewhat of course).
    I have a Fact called Job which has an attribute called Type ( along with others such as Create Date , Delivered Date , Length , Score etc ).
    What I need to display , is the following columns together in Answers.
    Type | Count of Type | Percentage of Total Number of Jobs.
    Count of Type is just the number of times the Type shows up for a specific type value.
    I can easily do a "Count of Type" as a Logical Column in the Business Model and Mapping for the Fact Table using a Default Aggregation Rule of Count.
    Percentage of Total Number of Jobs is supposed to be the Percentage that the specific Type Count is of the total number of jobs . i.e. Count of Type / Total number of all Jobs as %age.
    This is where I have my issue. I can create a logical column called Total Number of Jobs using default aggregation rule of count on Job ID and create a Percentage using Calculation Wizard just fine.
    But when I try to have this column in Answers against the first two columns I don't get the right result - I get 100% for every row in the third column - because of course it is grouping the results by Type so it is calculating the "Total Number of Jobs" and consequently the Percentage measure for each individual Type. Thus I get something like
    Type | Count of Type | Percentage of Total Number of Jobs
    1 | 5 | 100%
    2 | 5 | 100%
    When I really want to get
    Type | Count of Type | Percentage of Total Number of Jobs
    1 | 5 | 50%
    2 | 5 | 50%
    Is there any way I can "store" the total number of jobs in the Business Model and Mapping Layer as a logical column in the Job Fact so that it does not display the count aggregate for the grouping (Type) but instead just the total count ?
    I'll be glad to clarify if this sounds too fuzzy.
    Thanks in advance.
    AB.

    Hi ,
    Thanks for the reply , that is successful at getting past the issue of having 100% as the result in every row which would happen if we used a measure built in the Business Model and Mapping layer.
    I'm running into some other minor issues but I think they are data row count related .. I will update this if they are not.
    Additional clarification if it helps anyone else with similar issues.
    Basically Type is an attribute of the Job Detail Fact ( 0 to many rows per job ) . There is also a Job Fact that is at a higher level of granularity ( one row per job ).
    What I am trying to do is display the Percentage or even the Total Number of Jobs ( row count of Job Fact ) in each row along with the Type and Count of Type of Job Detail.
    This is of course made complex because not all Jobs have a Job Detail row and some have many.
    In my Job Detail logical table source , I have the Logical Table Job Detail mapped to both the Job and Job detail physical tables . ( I have tried connecting both via Inner and Left Outer joins) .
    So ideally I would see something like
    Type of Job Detail | Count of Type of Job Detail | Total Number of Jobs | Percentage of Total Number of Jobs
    1 | 5 | 50 | 10%
    2 | 5 | 50 | 10%
    Where the percentage and total are of Jobs and the total is less than 100% .

  • Display Total Row In Matrix

    Hi all!
    In my addon application I have Matrix with 10 columns (2 columns with column type Edit Text, 8 columns with column type checkbox) now In 8 columns with type checkbox I want to display Footer as form Id = 60207(Menu service/service Report/Response Time by assignee Report). How To do it?
    please give me the solution to display Footer(Total) of Matrix when the column have column type is checkbox.
    Thanks & Help Me

    Hi !
    Thanks for your reply! when using 2 matrixs have problem as follow:
    My Matrix has 10 columns so will appear horizonal scrollbar so it doesn't solved this problem. My Idea I will add row after the last row and display total but i have problem: 8 columns that i want to add total have column type is checkbox so I can't. HOw to convert column type only the my row? Or give me the other solution. THanks
    Edited by: Tao lao on Apr 8, 2008 12:02 PM

  • Positioning grand totals outside of matrix (help)

    I create a matrix which displays the right results.
    I produce grand totals from the information in the matrix
    My problem is I want to display these totals on the far right hand side below
    the subtotal of each group.
    My problem is how to I make the grand total display somewhere when its not part
    of the matrix. I tried to anchor it but it did not work.
    Help

    Hi Michael,
    Thank you for your response.
    Do you mean that we have to have these columns as part of select statement and the select statement consisting of only the sum of the columns (grand total columns) Q1 and have the rest of query(Q2) embeded in this query(Q1).
    Please let me know your thoughts.
    With Warm regards,
    Manjula

  • SSRS - % percentage ROW TOTALS don't calculate correctly in a Table Matrix

    SSRS - Report Builder 3.0
    I have created a report with a MATRIX table with a TOTAL ROW and a TOTAL COLUMN and the total column is calculating correctly but the ROW totals is not calculating correctly
    The screen shot below is of the Matrix table in the Report Builder 3.0 "Designer view" 
    When I run the report the column totals the percentage is averaged correctly, but the ROW TOTALS do not, some are close but i need them to be accurate.
    If you take the same data into excel the total percentage calculates correctly - if you compare the excel with the SSRS some rows do calculate close, but not accurate. the total column calculates correctly
    FY13-Q4
    FY14-Q1
    FY14-Q2
    FY14-Q3
    Total
    100%
    89%
    65%
    68%
    80%
    50%
    72%
    43%
    45%
    52%
    100%
    91%
    63%
    69%
    81%
    10%
    17%
    29%
    31%
    22%
    100%
    96%
    67%
    76%
    85%
    70%
    70%
    53%
    64%
    64%
    90%
    93%
    90%
    82%
    89%
    74%
    75%
    59%
    62%
    68%
    I Need the totals rows and columns to average the percentage correctly in the SSRS report.
    Please help...
    -Isaack

    Hi Katherine Xiong,
    The formula (SSRS Expression) i am using is the following
    =Sum(IIf(Fields!AnswerText.Value = "Yes", 1, 0)) / (Sum(IIf(Fields!AnswerText.Value = "No", 1, 0)) + Sum(IIf(Fields!AnswerText.Value = "Yes", 1, 0)) + Sum(IIf(Fields!AnswerText.Value
    = "n/a", 0, 0)))
    Basically if field value = "YES" it counts, if the answer = "No" if the value is = "n/a" it should not count in the total score percentage
    I get the correct PERCENTAGE on the 1st aggregate, but when the table has multiple aggregates the percentage is never accurate. 
    The Table below is using the above formula, the 1st aggregate is correct but if you get the average percentage from the 1st column it should be 86.2% is the accurate number, sometimes close but i want to report accurate numbers and not doubt SSRS reports
    compared to excel reports. 
    TOTAL ROW (highlighted on the screenshot in Yellow) is incorrect aggregate averages %, the correct average are the following
    [86.2%]      [71.5%]      [75.5%]     [87.87%]   [90.2%]     [69.9%]     [92.8%]
    -Isaack

  • Help creating percentage based on totals

    I've got a pretty simple report that shows vendor performance. It lists the vendor name, the po number, the amounts delivered, the expected delivery date, and the actual delivery date.
    I've got a total to count the number of deliveries. I've got a total to sum the times the vendor was late. What I want to add seems pretty straight-forward - a total percentage late. So, sum(times late)/count(deliveries) = total percentage late. How do I add the total percentage late to my report?
    -Tracy

    Tracy, are you looking to format the result of your calculation? If this is the case, you want to right click in the column, format data, click the number tab, and adjust the properties of the result.
    Also, it seems like you are trying to get a total percentage late overall. Your formula will give you the percentage late for each individual delivery. Try using the average function for the column you have calculated. This should give you the average percentage late. Hope this helps.
    -Mark

  • Percentage based ONLY on a total in a crosstab report

    HI all, I created a report (crosstab), very simple, in which I show on the rows the STEPS and on the columns the SITUATIONS.
    So, for every intersection I have a value as usual (the TICKET_COUNT)
    Then, I added the Totals at the bottom and on the right and everything worked fine !!
    But now, I need to add a field at the right of my crosstab to show the percentages calculated ONLY on the total (the one on the right)....
    With the predefined percentage It doesn't work because I can't base the TOTAL as datapoint inside the wizard; I tried also with a calculated field, but instead to have ONLY one field, I have many fields repeated many times.
    So I would have something like this in the example:
    (PROGRESS) (OK) (PENDING) (TOTAL) (PERCENTAGE)
    (STEP_A) (2) (7) (3) (12) (42,85)
    (STEP_B) (3) (1) (2) (6) (21,43)
    (STEP_C) (4) (2) (4) (10) (35,71)
    (TOTAL) (9) (10) (9) (28) (100)
    I used the () to separate all the fields and the values...is there another way to show better the data ?? (once it was possible to insert images, but now it doesn't work......)
    Any help will be appreciated
    Thanks in advance
    Alex

    Hi John, thank for yor answer.
    I try to explain to you better.
    I achieved quite easily this result:
                   IN PROGRESS       OK        PENDING       TOTAL      
    STEP A              2             7            3           12       
    STEP B              3             1            2            6       
    STEP C              4             2            4           10       
    TOTAL               9             10           9           28        where the totals are the native vertical and horizontal totals (not calculated fields).
    Now I want just to add an additional field called PERC. which calculates ONLY the vertical TOTAL's percentage as below:
                   IN PROGRESS       OK        PENDING       TOTAL       PERC.
    STEP A              2             7            3           12        42,85 %
    STEP B              3             1            2            6        21,43 %
    STEP C              4             2            4           10        35,71 %
    TOTAL               9             10           9           28        100 %where 42,85% = (12/28)*100
    21,43 = (6/28)*100
    35,71 = (10/28)*100
    I tried to add a calculated field, but,because the report uses a crosstab layout, this field is repeated many times and not once as above.
    Do you know a trick or a workaround in order to maintain the crosstab layout (the initial 3 fields + the vertical total) and add ONLY a field (the percentage) at the end ??
    Thanls again
    Alex

  • Need help with "percentage of" I need to see grandparent totals

    Theres a division in my database between Supervisors, Representants, and Lines.
    The hierarchy is Supervisors -> Representants -> Lines
    I have a measure called "acum sold" and I need the percentage of it.
    I`m using "Percentage of" -> "Collumn"and it works untill I reach the Lines level, then it doesn`t work (well it does, but not in the way I want)
    Basically it`s this
    Supervisor----Acum Sold---% Acum Sold
    X-------------1000------------100%----
    Then I go to the next level
    Supervisor----Representant----Acum Sold---% Acum Sold
    -----X----------------XY------------------500---------------50%-----
    -----X----------------YZ------------------500---------------50%-----
    And it`s still the way I want, but when I drill to XY representant...
    Supervisor----Representant----Lines-------Acum Sold---% Acum Sold
    -----X----------------XY------------XY1---------100---------------20%-----
    -----X----------------XY------------XY2---------400---------------80%-----
    The percentage is based off the XY totals (percentage of the 500 total acum sold) but I actually need the percentage based on the Supervisor
    I need something like this
    Supervisor----Representant----Lines-------Acum Sold---% Acum Sold
    -----X----------------XY------------XY1---------100---------------10%-----
    -----X----------------XY------------XY2---------400---------------40%-----
    Because XY1 and XY2 sold only 50% of the supervisor`s total. But BIEE is always trying to get 100% of the parent level, instead of the "grandparent" one.
    I hope I didn`t sound that confusing, I really need help with this one.
    Thanks in advance

    You need to use level based measures. Look up documentation/this forum for Level based measures (LBM).
    In short you drag a fact meaure to a heirarchy level in business mapping layer and it will always aggreagtre to that level. So create a total and grandparent level then divide child sum by grandparent total (LBM)

  • Working with percentages in Adobe Acrobat 9 Pro

    So, I have a quick question. I am new to working with forms in acrobat, and am having a hard time figuring this part out. If anyone can help me, I would greatly appreciate it!
    So I have a form that I've created in acrobat 9 pro. Below I have listed "individual 1:" and then "percentage allocation". The "percentage alloctions" are the different form fields for the percentages I've created. For each form field, I limited the values to not exceed 100%. I want individuals filling in this form to be able to fill in the percentages by each of the names without the TOTAL percentage value (of all three together) going over 100%. But...the trick is, I don't have a separate "Total" form field, there's no room for one. So is there a way to make it so the total of the three equals 100% without having a "total" form field?
    individaul 1:  percentage allocation
    Individual 2: percentage allocation1
    Individual 3: percentage allocation2
    Please let me know if this makes sense,

    Try67,
    Thank you for sending me that reference guide, that will help. This is extremely frustrating for me. Thank you for the field visible or hidden script...I did end up finding those yesterday, just didn't know how to incorporate them to become visible if the total number is less than 100.
    I ended up creating another text field right next to the total, and called it "statement". I marked this field as "hidden" through the general properties option in the adobe acrobat dialog box. And , I set up default text to read, "Total value must not be less than 100%". All of this, I did through the properties dialog box.
    Individual 1: 30
    Individual 2: 20
    Individual 3: 10
    Total:  60%             "statement" text field is here.
    I figured what I could do is add another "if statement" to the validation script I put in for the "Total" text field I already had (below)..don't know if that was a stupid thing to do or not, but didn't know how else to do it. And where it says getField, I added the "statement" text field (the one that is hidden), thinking it would just get that field, but it's not working, what did I do wrong?
    var total = Number(getField("individual1").value) + Number(getField("individual2").value) + Number(getField("individual3").value);
    if (total>100) {
        app.alert("The total of the beneficiary fields must equal 100%");
        event.rc = false;
    if (total<100) {
    this.getField("statement").display = display.visible;

Maybe you are looking for

  • Excel vs html - non-english as gebbrish

    folks, in my webapp a user can send to mysql db strings in english, hebrew or russian. when i display a data from the db in html format (<%@ page contentType="text/html"%>) everything is fine and all of the languages are shown as they should be. when

  • HT204204 Error invalid number when trying to send a TXT message

    While trying to send someone a TXT on craigslist, I inadvertently sent a TXT to a 7 digit number. I received back the following message (Where <XXXXXXX> is the 7 digit number I tried to TXT). I'm using an iPhone 6 (brand new) with the latest iOS. Han

  • Java DC Build Error

    Hi all. I want to have an utility Java DC, I mean a DC with some Java classes having methods and constants to use in some others DC's. I have created the Java DC and add into the Java build path, some Webdynpro libraries, when i use those API's  the

  • X-fi extreme music constantly humm

    Hello everyone, new user here So, while the microphone is enabele the card constantly produces an anoying humm. The weird thing is that the humm stops if i touch the pc case with my hand:P I think that this has something to do with grounding, i dont

  • RV320: VPN periodically freezes up and requires router reboot

    This occurs for both site-to-site as well as client vpn. When it occurs, VPN's can not reconnect. Is there a known issue?