How to calculate totals based on year (date) and comparing othe columns in the same table please

Hello Good Evening,
Could you please help me here
how to write condition for self table year records, such 2012 name and acctno match with 2013 name and acctno then total, provided below,
create table #tab1 (MasterKey int, AcctNo varchar(12),name varchar(25), SumaofShares numeric, request_dat datetime )
--drop table #tab1
insert into #tab1 values (1000, 100,'Tom', 2500, '10/01/2012')
insert into #tab1 values (1001, 101,'Bat', 1550, '08/11/2012')
insert into #tab1 values (1002, 102,'Kit', 1600, '06/12/2012')
insert into #tab1 values (1003, 103,'Vat', 1750, '04/15/2012')
insert into #tab1 values (1010, 104,'Sim',200, '04/21/2013')
insert into #tab1 values (1011, 105,'Tim',500, '06/18/2013')
insert into #tab1 values (1012, 100,'Tom',800, '08/22/2013')
insert into #tab1 values (1013, 101,'Bat',550, '09/15/2013')
insert into #tab1 values (1014, 100,'Pet',200, '02/21/2013')
insert into #tab1 values (1015, 103,'Vat',150, '03/18/2013')
insert into #tab1 values (1016, 110,'Sun',800, '03/22/2013')
insert into #tab1 values (1017, 111,'Bet',550, '12/15/2013')
insert into #tab1 values (9999, 111,'AAA',110, '12/15/2014')
create table #tab2 (IssueKey int, totalOutstanding numeric, sharedBenefits varchar(1) )
--drop table #tab2
insert into #tab1 values (1000, 500, 'V')
insert into #tab1 values (1001, 150, 'U')
insert into #tab1 values (1002, 100, 'N')
insert into #tab1 values (1003, 170, 'U')
insert into #tab1 values (1010, 100, 'U')
insert into #tab1 values (1011, 200, 'K')
insert into #tab1 values (1012, 340, 'U')
insert into #tab1 values (1013, 560, 'N')
insert into #tab1 values (1014, 280, 'V')
insert into #tab1 values (1015, 150, 'V')
insert into #tab1 values (1016, 840, 'V')
insert into #tab1 values (1017, 530, 'N')
i would like to get 4 columns output
how to get sumofshares (#tab1) and TotalOutStanding(#tab2) summ up with these values please.,
MasterKey (#tab1) and IssueKey (#tab2) are like primary key and foreign key
so the request is
need to calculate, sumofshares (#tab1) and TotalOutStanding(#tab2) as below
1)ShareBenefist = U and year( request_dat) in (2012 , 2103) and (Name for 2012 should match with 2013 name and 2012 Acctno should match with 2013 accounno) in (#tab1)
then '2012 and 2013 accts UN Veriverted'
2)ShareBenefist = V and year( request_dat) in (2012 , 2103) and (Name for 2012 should match with 2013 name and 2012 Acctno should match with 2013 accounno) in (#tab1)
then '2012 and 2013 accts Veriverted'
3)ShareBenefist = N and year( request_dat) in (2012 , 2103) and (Name for 2012 should match with 2013 name and 2012 Acctno should match with 2013 accounno) in (#tab1)
then '2012 and 2013 accts NONVERT'
4)year( request_dat) =2102 and Name and Acctno not match with 2013 account name and acctno (#tab1)
then '2012 last year accounts'
5)year( request_dat) = 2013 and Name and Acctno not match with 2013 account name and acctno (#tab1)
then '2012 This year accounts'
for ex 1) the below accounts in #tab1 has both 2012 and 2013 and acctno same in both years and name is same in both years so it is condired as
insert into #tab1 values (1012, 100,'Tom',800, '08/22/2013')
for ex 2)
insert into #tab1 values (1013, 101,'Bat',550, '09/15/2013')
for ex 4) 2012 records there is not match acctno and name in 2013 recods
insert into #tab1 values (1002, 102,'Kit', 1600, '06/12/2012')
for ex 5) 2013 records there is no match of name and acct no with 2012 records
insert into #tab1 values (1010, 104,'Sim',200, '04/21/2013')
insert into #tab1 values (1014, 100,'Pet',200, '02/21/2013')
insert into #tab1 values (1016, 110,'Sun',800, '03/22/2013')
insert into #tab1 values (1017, 111,'Bet',550, '12/15/2013')
Expected Results (just for format)
AcctTypeDescription, SumofShares, OtotalutStand
'2012 and 2013 accts UN Veriverted',2700,234
'2012 and 2013 accts Veriverted' ,2890,234
'2012 and 2013 accts NONVERT' ,4533,325
'2012 last year accounts' ,2334,567
'2012 This year accounts' ,2222,877
Please
Thank youy in advance
asita

As I understand it, your sample output was only to show the format, and did not pretend to be give the exact result given the sample data. This is pity, because means that I was not able to verify that my query below gives the desired result.
The exact relation between #tab1 and #tab2 is not clear to me. I'm making the assumption that a row in #tab1 may have zero or one row in #tab2, but not many.
My solution has two CTEs. The first simply joins the tables together and extracts the year. In the second CTE, I perform a self-join over the first CTE which I have divided in two by year. This is a full join, since an account may appear for only one of
the year. Note that it is instrumental to extract the year data in inner queries first.
The final query is just an aggregation over the categories.
create table #tab1 (MasterKey int, AcctNo varchar(12),name varchar(25), SumaofShares numeric, request_dat datetime )
--drop table #tab1
insert into #tab1 values (1000, 100,'Tom', 2500, '10/01/2012')
insert into #tab1 values (1001, 101,'Bat', 1550, '08/11/2012')
insert into #tab1 values (1002, 102,'Kit', 1600, '06/12/2012')
insert into #tab1 values (1003, 103,'Vat', 1750, '04/15/2012')
insert into #tab1 values (1010, 104,'Sim',200, '04/21/2013')
insert into #tab1 values (1011, 105,'Tim',500, '06/18/2013')
insert into #tab1 values (1012, 100,'Tom',800, '08/22/2013')
insert into #tab1 values (1013, 101,'Bat',550, '09/15/2013')
insert into #tab1 values (1014, 100,'Pet',200, '02/21/2013')
insert into #tab1 values (1015, 103,'Vat',150, '03/18/2013')
insert into #tab1 values (1016, 110,'Sun',800, '03/22/2013')
insert into #tab1 values (1017, 111,'Bet',550, '12/15/2013')
insert into #tab1 values (9999, 111,'AAA',110, '12/15/2014')
create table #tab2 (IssueKey int, totalOutstanding numeric, sharedBenefits varchar(1)  )
--drop table #tab2
insert into #tab2 values (1000,  500,  'V')
insert into #tab2 values (1001,  150,  'U')
insert into #tab2 values (1002,  100,  'N')
insert into #tab2 values (1003,  170,  'U')
insert into #tab2 values (1010,  100,  'U')
insert into #tab2 values (1011,  200,  'K')
insert into #tab2 values (1012,  340,  'U')
insert into #tab2 values (1013,  560,  'N')
insert into #tab2 values (1014,  280,  'V')
insert into #tab2 values (1015,  150,  'V')
insert into #tab2 values (1016,  840,  'V')
insert into #tab2 values (1017,  530,  'N')
go
WITH joined AS (
  SELECT a.MasterKey, a.AcctNo, a.name, a.SumaofShares,
         year(a.request_dat) AS year, b.totalOutstanding, b.sharedBenefits
  FROM   #tab1 a
  LEFT   JOIN #tab2 b ON a.MasterKey = b.IssueKey
), categories (category, sumofshares, totaloutstanding) AS (
   SELECT CASE WHEN A.MasterKey IS NOT NULL AND
                    B.MasterKey IS NOT NULL
                    THEN '2012 and 2013 accts ' +
                         CASE B.sharedBenefits
                            WHEN 'U' THEN 'UN Veriverted'
                            WHEN 'V' THEN 'Veriverted'
                            WHEN 'N' THEN 'NONVERTED'
                            ELSE ''
                         END
               WHEN A.MasterKey IS NOT NULL THEN '2012 last year accounts'
               WHEN B.MasterKey IS NOT NULL THEN '2013 this year accounts'
          END,
          coalesce(A.SumaofShares, 0) + coalesce(B.SumaofShares, 0),
          coalesce(A.totalOutstanding, 0) + coalesce(B.totalOutstanding, 0)
   FROM   (SELECT * FROM joined WHERE year = 2012) AS A
   FULL   JOIN (SELECT * FROM joined WHERE year = 2013) AS B
         ON A.AcctNo = B.AcctNo
        AND A.name   = B.name
SELECT category, SUM(sumofshares) AS sumofshares,
       SUM(totaloutstanding) AS totaloutstanding
FROM   categories
GROUP  BY category
go
drop table #tab1, #tab2
Erland Sommarskog, SQL Server MVP, [email protected]

Similar Messages

  • How to compare two fields from the same table in the select statement

    Hi, friends
    I try to compare tow fields from the same table, but no result,
    For example, this
    data: cptotchek tyep i.
    select count(*) into cptotchek
    from aufk where erdat = aufk-idat2 .
    The result is  cptotchek = 0, but there are the records in aufk , where,  aufk-erdat = aufk-idat2.
    Please, help me, i don't use the loop statement for optimize my program.
    Regards

    Hi  ,
           it will not return  any value   when you are using   column of same table 
           such as Date Field   , Because  while Using Aggregate Function  it will not check with self column
    .      For that you have to take data in one internal table and then you can work on it  .
         And if you are worried about Performance  it will not affect  , untill you are selecting only required data  .
    you can try this way  .
    data: cptotchek type i.
    types : begin of  w_aufk.
            include structure aufk  .
          types : end of  w_aufk .
    data : it_aufk type standard table of w_aufk with header line  .
    select * into corresponding fields of table it_aufk
    from aufk  .
    loop at it_aufk .
    if it_aufk-erdat  = it_aufk-idat2 .
    write : / it_aufk-erdat , it_aufk-idat2 .
    else .
    delete it_aufk .
    endif  .
    endloop.
    Regards
    Deepak.

  • How to sum different column in the same table

    Hi everyone
    I would like to know how can I make the sum of different column in the same table using apex
    exple:
    TR_PROJ_BIL_TRIM.ENTPIDFISC as ENTPIDFISC,
        TR_PROJ_BIL_TRIM.EXEANNEE as EXEANNEE,
        TR_PROJ_BIL_TRIM.PROJBILTRIMT1PREV as PROJBILTRIMT1PREV,
        TR_PROJ_BIL_TRIM.PROJBILTRIMT2PREV as PROJBILTRIMT2PREV,
        trunc( TR_PROJ_BIL_TRIM.PROJBILTRIMT1PREV)+(TR_PROJ_BIL_TRIM.PROJBILTRIMT2PREV)
    from TR_PROJ_BIL_TRIM TR_PROJ_BIL_TRIM
    group by TR_PROJ_BIL_TRIM.ENTPIDFISC,TR_PROJ_BIL_TRIM.EXEANNEE
    but while trying to run this script i get this error message:"ORA-00979: not a GROUP BY expression"
    thanks for reading me and I hope to hear from you soon

    Hi,
    Your question do not have anything do with APEX.
    It is pure SQL question and you will get better answer this kind questions from SQL and PL/SQL forum
    You need have GROUP BY when you use aggregate functions like SUM.
    I assume you like just add two columns.
    Try
    SELECT ENTPIDFISC
        ,EXEANNEE
        ,PROJBILTRIMT1PREV
        ,PROJBILTRIMT2PREV
        ,trunc(PROJBILTRIMT1PREV) + (PROJBILTRIMT2PREV)
    FROM TR_PROJ_BIL_TRIM
    Regards,
    Jari

  • How do I store 4 hours of data and get it out of the "while loop" into a spreadshee​t file for documentin​g purposes? "See additional Text for additonal info"

    What a have is a VI that uses the following SUbvi's, starts with FP OpenVI, then FP Create TagVI, into a "While Loop" which contains a FP ReadVI outputting data into a Index ArrayVI outputting to a Display (DBL). This shows the output of a FP-AI-100 monitoring a 9v battery. I have to monitor this battery for a 4 hour period my problem is storing the 4 hours of data and getting it out of the "while loop" into a "Write to Spreadsheet File VI" all I seem to accomplish is just one data sample which I get into a spreed ship file with no problem. I just can't get 4 hours worth. By the way this is my first VI and I'm self
    trained so have mercy.

    I figured it out thanks.
    John Morris
    Glendinning Marine

  • How do I store 4 hours of data and get them out of the "while loop" into a spreadsheet file for documenting purposes? "See additional Text for additonal info"

    What a have is a VI that uses the following SUbvi's, starts with FP OPENvi, then FP Create Tagvi, into a "While Loop" which contains a FP READvi outputting data into a INDEX ARRAYvi outputting to a Display (DBL). This shows the output of a FP-AI-100 monitoring a 9v battery. I have to monitor this battery for a 4 hour period my problem is storing the 4 hours of data and getting it out of the "while loop" into a "Write to Spreadsheet File vi" all I seem to accomplish is just one data sample which I get into a spreed ship file with no problem. I just can't get 4 hours worth. By the way this is my first VI and I'm sel
    f trained so have mercy.

    I figured it out Thanks.
    John Morris
    Glendinning Marine

  • Data of column datatype CLOB is moved to other columns of the same table

    Hi all,
    I have an issue with the tables having a CLOB datatype field.
    When executing a simple query on a table with a column of type CLOB it returns error [POL-2403] value too large for column.
    SQL> desc od_stock_nbcst_notes;
    Name Null? Type
    OD_STOCKID N NUMBER
    NBC_SERVICETYPE N VARCHAR(40)
    LANGUAGECODE N VARCHAR(8)
    AU_USERIDINS Y NUMBER
    INSERTDATE Y DATE
    AU_USERIDUPD Y NUMBER
    MODIFYDATE Y DATE
    VERSION Y SMALLINT(4)
    DBUSERINS Y VARCHAR(120)
    DBUSERUPD Y VARCHAR(120)
    TEXT Y CLOB(2000000000)
    NBC_PROVIDERCODE N VARCHAR(40)
    SQL> select * from od_stock_nbcst_notes;
    [POL-2403] value too large for column
    Checking deeply, some of the rows have got the data of the CLOB column moved in another column of the table.
    When doing select length(nbc_providercode) the length is bigger than the datatype of the field (varchar(40)).
    When doing substr(nbc_providercode,1,40) to see the content of the field, a portion of the Clob data is retrieved.
    SQL> select max(length(nbc_providercode)) from od_stock_nbcst_notes;
    MAX(LENGTH(NBC_PROVIDERCODE))
    162
    Choosing one random record, this is the stored information.
    SQL> select length(nbc_providerCode), text from od_stock_nbcst_notes where length(nbc_providerCode)=52;
    LENGTH(NBC_PROVIDERCODE) | TEXT
    -------------------------+-----------
    52 | poucos me
    SQL> select nbc_providerCode from od_stock_nbcst_notes where length(nbc_providerCode)=52;
    [POL-2403] value too large for column
    SQL> select substr(nbc_providercode,1,40) from od_stock_nbcst_notes where length(nbc_providercode)=52 ;
    SUBSTR(NBC_PROVIDERCODE
    Aproveite e deixe o seu carro no parque
    The content of the field is part of the content of the field text (datatype CLOB, containts an XML)!!!
    The right content of the field must be 'MTS' (retrieved from Central DB).
    The CLOB is being inserted into the Central DB, not into the Client ODB. Data is synchronized from CDB to ODB and the data is reaching the client in a wrong way.
    The issue can be recreated all the time in the same DB, but between different users the "corrupted" records are different.
    Any idea?

    939569 wrote:
    Hello,
    I am using Oracle 11.2, I would like to use SQL to update one column based on values of other rows at the same table. Here are the details:
    create table TB_test (myId number(4), crtTs date, updTs date);
    insert into tb_test(1, to_date('20110101', 'yyyymmdd'), null);
    insert into tb_test(1, to_date('20110201', 'yyyymmdd'), null);
    insert into tb_test(1, to_date('20110301', 'yyyymmdd'), null);
    insert into tb_test(2, to_date('20110901', 'yyyymmdd'), null);
    insert into tb_test(2, to_date('20110902', 'yyyymmdd'), null);
    After running the SQL, I would like have the following result:
    1, 20110101, 20110201
    1, 20110201, 20110301
    1, 20110301, null
    2, 20110901, 20110902
    2, 20110902, null
    Thanks for your suggestion.How do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • Count Distinct based on another column in the same table

    Hello,
    My question in short: is is it possible to add a new column to a view which holds the DISTINCT COUNTS of values/domains of another column in the same view?
    For example, in the below table the column "Distinct Count of Occurence" shows how many distinct values a person has in the Occurence column. So AAA has 1 and 2 therefore it is 2 distinct values etc.
    My issues is that I can retrieve unique values bu Count (Select Occurence)but I can not add the new column that would add the records to the corresponding Persons in the above table.
    Is there an easy way to achieve this on the DWH level or should it be done with MDX in the cube?
    Thanks

    Hi,
    Below a solution to use the view by adding a column with window functioning, maybe this will help.
    CREATE TABLE #TMP
    PERSON VARCHAR(10),
    OCCURENCE SMALLINT
    --DROP TABLE #TMP
    INSERT INTO #TMP(PERSON,OCCURENCE)
    VALUES
    ('AAA','1'),
    ('AAA','2'),
    ('BBB','1'),
    ('BBB','1'),
    ('BBB','1'),
    ('CCC','1'),
    ('CCC','2'),
    ('CCC','3');
    --TRUNCATE TABLE #TMP
    WITH CTE
    AS
    SELECT PERSON
    ,OCCURENCE
    ,ROW_NUMBER() OVER(PARTITION BY PERSON ORDER BY OCCURENCE) AS RN
    FROM #TMP
    SELECT PERSON, MAX(RN) AS RN
    FROM CTE
    GROUP BY PERSON
    Regards,
    Reshma
    Please Vote as Helpful if an answer is helpful and/or Please mark Proposed as Answer or Mark As Answer when question is answered

  • Po Creation Date and Orader Datate are holding the same values or diffrent?

    Hi All,
    Please clarify on weather the PO Creation_Date at header level and Po Order Date at the Summary level both are having the same data or different.
    Thanks,
    Sathya.

    Sorry, but it's difficult to describe ... I'm not sure if I can recreate this on ApEx-Site, but I take a try.
    Without pagination report is much slower than before.
    The diffrence between the two output version is that the column
    NVL(AVG(preisnext),AVG(preiscurrent)) - NVL(AVG(preiscurrent),AVG(preisnext)) Entwicklung
    is computed as 0 in the using-items-version (wich is not correct).
    I found out that when I replace the NULL-columns in the subquery (NULL preiscurrent // NULL preisnext) with static values (e.g. 0) it works again, but with average function the result is not correct.
    Hoped that someone got this problem, too.
    Just as I thought, I don't get the problem with a simple example version (http://apex.oracle.com/pls/otn/f?p=51163) :-|
    And the strange thing is that it works when I started application for the first time this morning, but after changing Input Values it went wrong. (Meanwhile I logged out and in again to be sure that cache is cleared but no effects).
    Edited by: user11884435 on 10.09.2009 01:31
    Meanwhile I suspect that problem got something to do with source of an item: when it's static it's O.K.; when it's based on a query (SELECT TO_DATE(:P1_DATUM_NEU,'dd.mm.yyyy') - 7 FROM dual;) then it goes wrong ... seems that the subselect returns no rows because of this.
    ...to be continued ;-)
    Edited by: user11884435 on 10.09.2009 02:44

  • Change LOV of column in view, based on values of another LOV of column in the same view

    Hi,
    I am using Jdeveloper 11.1.1.5.
    I have a scenario in which I have two columns in the view. column names are:
    1- Column A
    2- Column B
                        both the columns have LOV's
    LOV in column A contains values as: 1, 2. Now, when I select the value 1 in column A, In the column B, an LOV named ABC should be shown. and when I select value 2 from LOV in column A,  LOV named XYZ should be shown in column B.
    how can I do that?
    thanks in advance (^.^).

    Use onchange attribute of the first drop-down. On change, submit the form. On server side, fetch the values for second drop-down based on the value selected for the first drop-down.

  • How to delete photo's from both Iphoto and source (external HD) at the same time

    I've seen a few postings on this but none seem to answer the quetion.  Sorry if this is a duplicate and I coudn't find the answer.
    I have an external HD with over 4GB of pictures in various folders and subfolders.  I would like to import one folder at a time and go through the photo's using iPhoto to choose which ones I want to keep and which ones I don't.  If I come accross a picture I don't like I would like to delete it in iPhoto and at the same time have it deleted from my external HD.  I have tried the following with no success:
    1. Import photo's to iPhone and delete photo's I don't want.  I did this in the photo's view, not events or albums.
    2. After deleting the photo's I empited the iPhoto recyling bin which then sends the photo's to my Macbook pro recycle bin
    3. I then emptied the macbook pro recyle bin. 
    From what I've read this is how you're supposed to be able to delete photo's permantently form you HD or External HD.  The photo's I delete never end up getting erased from my external HD though.  So now I'm still stuck with a back up of a bunch of pictures I don't want on my external HD.  They are gone from iPhoto but this doesn't help or avoid taking up space.  This only cleans up iPhoto library but not my actual external HD.
    So am I correct that there actually isn't any way to do this other than going through the photo's on my external HD using Finder and deleting them before importing to iPhoto?

    A managed library is the default type that iPhoto creates.  Make sure you have the option selected to copy photos into iPhoto when importing:
    was hoping it would at least keep thumbnails of all my photo's.
    I use a DAM (digital asset management) program which will do exactly what you want: Media Pro 1.  It creates catalogs (libraries) of thumbnails, up to 640 x 480, that is uses to manage the photos.  You can do anything to the photos except edit, slideshows, or anything that requires the full source image when the source files are not available.  You can arrange  photos in Catalog Sets (like iPhoto albums), add keywords, etc. to them even when the sorce files are not available.  When the source files are available you can write that metadata to the source file and rename files. You can use Media Pro in demo mode for about a month I believe. 
    A catalog file for 44,000 photos (178 GB) with the thumbnails set for 320 pixels at high resolution is only 1.5 GB. The larger the thumbnail selected the larger the catalog file will be. 

  • How to calculate age based on current month and over the next 12 months in Webi 4.1

    Hi,
    I am working on a report where I need to show employees who turned 65 from the time the report is run to over the next 12 months.I have the 'Date of Birth' field available. I am using Bex Query as a data source and webi 4.1. How do I calculate this in Webi 4.1. I appreciate any help.
    Thank you,
    Charvi.

    Hi Charvi,
    Get the all employees who are all in 64 age bucket till yesterday.  Keep indicator for these employees.
    Then obviously these employees will be falling in 65 age in coming 12 months/365 days.
    Same you can get at Bex level also. Create formulae :
    if employee age = 64 then 1 else 0.
    (AGE = 64 * 1 + 0)
    Then create condition on this formulae as Value = 1.
    Revert back your feedback.
    Regards, Vijay

  • CS 3 gets error saying can't install -incomplete or damaged files. This CD has only been installed once and it was a puzzle that I solved years ago and I am up against the same puzzle now. How to I properly proceed with the install on an iMac i5 OS 10.10.

    The first question I asked is the same as this one. I have read the PDF and down what it says but it won't get past the error message. The CD is fine and I went through this a long while ago. 2006 I believe. I just set this iMac up last night and there shouldn't be a problem with the Mac or the CD.

    The first question I asked is the same as this one. I have read the PDF and down what it says but it won't get past the error message. The CD is fine and I went through this a long while ago. 2006 I believe. I just set this iMac up last night and there shouldn't be a problem with the Mac or the CD.

  • How to select a value of a max value of another column in the same row?

    pversion pdate pcount
    1     11/6/2011     1
    0     11/6/2011     25
    1     11/6/2011     24
    How to select pversion for a maximum pcount, in this case max count is 25 and version will be 0?

    Like this?
    -- Data:
    with yourtable as
    select 1 pversion , 1 pcount from dual union all
    select 0 , 25 from dual union all
    select 1 , 24 from dual
    -- Query:
    select max(pversion ) keep (dense_rank last order by pcount) m_pversion
    from yourtable;(When you want to use the query with your real data, you will have to change 'yourtable' to your actual tablename)

  • How to delete my email on my iPad and have it automatically delete the same email on my iPhone and iMac?

    How to delete an email on an apple device and have that deleted email automatically delete from my iPhone and iMac?

    You need an IMAP type email account a opposed to POP 3. Google the two words together to find out more.

  • How can I transfer files between a PC and a Mac NOT on the same network?

    I have an iCloud account, a Time Capsule and a Seagate Free Agent portable hard drive. Which ways can I transfer files (any or all three?) and how?  Here's my dilemma: I'm a graphic designer and I work on a PC at my office. At home I use my MacBook Pro...same programs, save files. However, I had trouble earlier saving my new documents onto the Free Agent from my MacBook Pro as the Free Agent was Read Only and original files on it were from the PC. The PC is not on my Time Capsule network and not accessible or even close to my MacBook. I simply want to be able to save the files I updated/changed on my Mac to somewhere that I can access them later from that PC...right now they are saved to my Documents folder. Any help is greatly appreciated. Thanks!

    Format the external drive as FAT32 or ExFAT. Both computers will then be able to read and write to it.

Maybe you are looking for

  • Apple TV hookup problem

    I just purchased a 2nd-generation Apple TV, and I'm trying to hook it up.  I have a TV with two HDMI ports in back.  One HDMI cable goes from the TV to my DVR/receiver, the other goes to my Bluray DVD player.  How do I hook up the Apple TV with both

  • When attempting to transfer pics from my android to adobe, getting repeated errorcode:c0000002.  Please advise.

    I am in a loop and cannot get my pics off my phone to anything on the computer now.

  • Backlight Bleed on W540 (3K IPS)

    Hi all, So far, I have been very pleased with my W540 in all aspects once I got everything the way I wanted it. However, there is some backlight bleed on the screen, and I'm not sure if this is normal or I should pursue a screen replacement through t

  • First impressions of the iPad

    I played with an iPad yesterday at our local Apple Store, and my first impressions are very positive. I plan to buy one when the 3G models come out in a few weeks. The only major disappointment for me is that the iPad OS does not support printing to

  • Mass creation material master classification

    Hi, I've created my new materials, now I need to create the classification. In particular, follow an example of classification. How can I use the RCCLBI03? In particular, in relation to the example, I need to change for each material/object only the