Refresh Hidden Sheet data for Chart

Hello people, I'm trying to expand a hidden sheet data to refresh a chart using these data, (in BPC 10 nw sp 17 patch 2)
The problem is that Data sheet is not refreshed, don't know the reason. Maybe someone can help me.
If I unhide the data sheet, and refresh it using standard refresh buton, it works. But I want to hide data sheet.
I remember doing this with EVDRE in BPC 7 and the procesdure was more or less the same:
Disable events/ screenupdating -> Unhide Data Sheet -> refresh -> Hide Data sheet -> Enable events/ screenupdating
Here is the VBA function I'm using:
   Application.EnableEvents = False
   Application.ScreenUpdating = False
    Dim EPMOB  As EPMAddInAutomation
    Set EPMOB = New EPMAddInAutomation
    Sheets("Chart Data").Visible = True
    ActiveWorkbook.Sheets("Chart Data").Select
    EPMOB.RefreshActiveSheet
    Sheets("Chart Data").Visible = False
    Sheets("Chart").Select   
    Application.EnableEvents = True
    Application.ScreenUpdating = True
Thanks for your help.

Hi Vadim than, Thanks for your reply, I'm still getting blank results using the macro. but there is data in report.
The problem was that I was calling the refresh chart info from an existing EVDRE report/sheet.
I wanted to use this report because it's the classic menu report with diferent steps and calls.
If i cut/paste the button to the CHART sheet (EPM 10), it's working... strange....
At least I can refresh in the chart sheet, but I cannot call macro from this MENU Evdre sheet.
I'm getting some Clear Cache errors and i have to reconnect to. see again reports... maybe that's because the EVDRE/EPM mixing reports...
thanks

Similar Messages

  • Filtering Data For Charts & Graphs

    Hi,
    I've been using numbers for a while now and have ran into a problem I can't solve. I'm working on a project for my work. What I'd like to do is enter each day's revenue in different categories and have Numbers calculate some stats on those numbers. I plan on making each year (for now, there will be 2008, 2009, and 2010) a separate sheet. That's the easy part.
    To compare the numbers from year to year, I'd like to be able to specify certain dates. I know about hiding the rows that I don't want. However, how can I make the sums be only those rows that are showing-not all the rows? I also know I could easily do this month-to-month. However, I work at a pet resort-our income varies from season to season and the dates for different seasons vary. I'd like to be able to compare let's say all of Christmas vacation which might have been 12/23-1/3 in 2008 but 12/24-1/2 for 2009. Is there anyway to do this in Numbers? I'm well versed on FileMake and know it can be done there but without charts. It doesn't make much sense to gather the data in FileMaker and export to Numbers, especially if I want to compare a few groups of dates quickly.
    Thank you for any help!

    I am not trying to dampen the desire for automation but if I can interject here, this is going to get more complicated. One thing you mentioned in your original post was that you will have a different sheet/table for each year. If you use SUMIFS (as has been the plan until now), the summary table with the start and end dates will need to 1) convert the year of the start/end dates to a table name so it pulls data from the correct table and 2) handle the case of a date range that spans a year (or multi-year) boundary or flag this as non-allowed. Not a problem to do either, just a little more work. The SUMIF solution has these same issues to deal with plus each year's table will need a set of extra columns as Jerry showed. If you have more than one summary report (such as one for Christmas, one for Easter, and one to play with), each report will require its own set of columns in each table. I note that Jerry's formulas in the extra columns cover the issue of multi-year boundaries as long as the summary table does a SUMIF of each of the year tables and sums the results. Again, it can all be done, it'll just be a little more work.
    Going back to your original post and the desire to do comparisons of specific things like Christmas seasons of each year rather than what-if analyses that would require a lot of changes to date ranges to find out things like "what happens if Christmas season is defined as starting a day earlier or a day later or...", I am still wondering if it might be easier to select the data manually. Also, the lack of the SUMIFS function is a real limitation if you want more than one summary report in your document.
    You know your plans better than I do; maybe automating it is the best idea for the long run. It is your call, I'm just giving my 2 cents based on the limited information I have.

  • Text als data for charts

    Hey there,
    I'm new to numbers so excuse me if my question might have a very simple and obvious answer, but I've been trying to make this work now for about an hour or so and just can't come up with a solution, so here's my problem:
    I have a column in my table, in which there are several texts entered. It's no special column, nothing like grey colored or so, just a simple column. Now i want numbers to create a pie chart that shows how often each oft the different texts is mentionend. So actually all i need are the total numbers of each text.
    Let me give you an example...
    If got three texts "a", "b" and "c" in my column. "a" is mentioned two times, "b" five times and "c" three times. Now I want my pie chart to have three sections that show that in 20% of the cases it's "a" in 50% it's "b" and in 30% it's "c".
    Has anybody got an idea how to do that?
    Thanks for your help,
    A_K_15

    Here's one way:
    You construct a table with the counts. The formula in B2 of the Counts table, copied down, is:
           =COUNTIF(Data::A,A2)
    Row 1 is defined as a Header Row.  Column A is a Header Column. If they are not already Headers, convert them via the contextual menu. 
    Select the entire table and choose pie chart.
    SG

  • How to zero out my data for chart

    I am very new to LabVIEW so please be patient.
    I am aquiring 12 channels of 0-10 volt signals through a cDAQ-9174 chassis and 9205 module on Labview 11. I am using producer/consumer loops to the write the data to a file also sent to two charts. I want to keep the data sent to the file as is, and then tare (zero out) the data going to the charts.
    I have attached the code. Please ignore the diagram dissable structure and it's contents.
    Any help would be appreciated,
    ~Chris
    Attachments:
    WaveTest_2.8.vi ‏258 KB

    Are you supposed to get the this offset each time you press Start, or only the first time? For example, if I press "Start Test A", run it for 5 minutes, and then press it again to stop it, and then 10 minutes later I press it again to start it, do you need to update the offsets, or would you use the ones from 15 minutes earlier? Since the producer consumer loops are running all the time, I would suggest using a shift register/feedback node to keep track of whether you've acquired the offset values. Reset the flag when you turn off the test if you want to get the offsets "fresh" on the next start. As for where to save this, a simple local variable will work (yes, I said local variable, all you local variable haters out there!). In this case you will not run into a race condition.
    Note: you do not need to use your own buttons for controlling the visibility of plots. In LabVIEW 2011 that's built-in. Show the plot legend, and then right-click on the legend and select Visible Items -> Plot Visibility Checkbox.
    See attached modification for one possible implementation. Note that I removed the enqueing done in the False case in the producer loop since I did not see much point in enqueuing when you didn't actually get any data.
    Attachments:
    WaveTest_2.8 MOD.vi ‏215 KB

  • Possible to use Ms Excel data as a dataprovider in Flashbuilder for charting

    My dept has an excel spreadsheet with sales data. I'd like to know if anyone has used Excel data for charting in Flashbuilder? Does anyone know of any resources or samples?
    Thanks in advance.

    Looks like I found my own answer. 
    Seems that all I need to do was convert my Header data into a 2D array. 
    Don't know why that one was so tricky to figure out.  But it's working now.   
    Patrick Allen

  • Is there a way to display timesheet for range of dates for list of employee

    Dear Experts,
    Is there any way, where  user can view the time sheet data for all employees for a project ?
    CAT3 is for single employee
    Se16 cannot be given to the users. 
    I also tried CATS_DA, report is good, but I am not getting hours .It is showing zero.
    Request for your valuable update
    Regards
    Siva

    Hi,
    Please go through the below link :
    http://help.sap.com/saphelp_bw/helpdata/en/62/5b226978bf11d38e710000e81de309/content.htm
    Regards,
    KRishna O

  • Problem while refreshing the data for the second time using excel services in sharepoint 2013...

    Hi,
    I have migrated my Sharepoint from 2010 to 2013.I am able to get the data at the first time of refresh when I click on refresh for the second time I am getting the empty the sheet.
    below find the flow of refresh
    First Refresh
    On Click of refresh open the workbook with excel services and return the session id.
    Using that session I am invoking RefrehAsync method of excel services
    After refresh completed I am setting the calculation of workbook as automatic(to calculate the formulas) using the same session id
    After setting the calculation as Automatic I am setting the calculation type as full(recalculate) using the same session id.
    Now I am able to see the data
    Second Refresh
    After clicking on refresh instead of opening the workbook I am using the session id(already opened workbook) and setting the calculation type as manual
    I am following the same process from refresh(RefreshAsync) as I have followed in first refresh.
    This time my formulas are not getting calculated because of that I am not able to see the data.
    Could you please let me know that am I missing anything here?
    Is this know issue in Sharepoint2013 excel services as same code is working fine with Sharepoint2010.
    If I close the workbook(session id null) and opens(new session id) for all the refreshes it is working and I am able to see the data.
    Thanks,
    Meenakshi Nagpal
    N.Meenakshi

    I am able to see the data for the second refresh  if I change the data source.If I use the same data source which is used in the first refresh I am not getting the data.Excel services will contact the cubes and calculate the formulas in my workbook.
    Could you please let me know what could be the problem at second refresh while contacting the same data source with same session id?
    Please help me asap.
    Thanks,
    Meenakshi Nagpal
    N.Meenakshi

  • Powerpivot for sharepoint error: Unable to refresh data for a data connection in the workbook

    Hello,
     I have three errors when i try to use a simple powerpivot workbook published in sharepoint: (nothing on google has help me..)
    1-Unable to refresh data for a data connection in the workbook.
    Try again or contact your system administrator. The following connections failed to refresh:
    PowerPivot Data
    2-The embedded PowerPivot data in the workbook cannot be loaded due to a version mismatch
    3-01/21/2012 17:26:47.08  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel
    Calculation Services     bccc Medium   Session.HandleTrimmedWorkbookReloading: userOperation ApplySlicerSelectionOperation requires BaseWorkbook: "http://crm2011:2020/Marketing%20Reports/test2_excel32bits.xlsx"
    [0x409] [Saturday, 21 January 2012 09:40:18] [BaseWB ID: 2] to be untrimmed if it is currently trimmed. The workbook is currently NOT trimmed. fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.08  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     f1va Medium   CWorkbookWrapper::CWorkbookWrapper: Created with ID=4 fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.09  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     eq3r Medium   ConnectionRequest.ConnectionRequest: New connection request. SessionId=1.V21.4PI+fCwIq52LH++nOoMzs90.5.en-US5.en-US73.-0060#0000-10-00-05T03:00:00:0000#+0000#0000-03-00-05T02:00:00:0000#-006036.bfceb31b-7122-46ca-9e2a-ae52cefcfcaf1.N,
    WorkbookVersion=ConnectionInfo.WorkbookVersion: Uri=http://crm2011:2020/Marketing Reports/test2_excel32bits.xlsx, Version=Saturday, 21 January 2012 09:40:18 fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     aysl Medium   Succeeded to initialize a chart. fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     8xk9 Medium   ExternalSource.ExecuteOperation: We exhausted all available connection information. Exception: Microsoft.Office.Excel.Server.CalculationServer.Interop.ConnectionInfoException: Exception of type
    'Microsoft.Office.Excel.Server.CalculationServer.Interop.ConnectionInfoException' was thrown.     at Microsoft.Office.Excel.Server.CalculationServer.ConnectionInfoManager.GetConnectionInfo(Request request, String externalSourceName, Int32
    externalSourceIndex, Boolean& shouldReportFailure)     at Microsoft.Office.Excel.Server.CalculationServer.ExternalSource.ExecuteOperation(Request request, ExternalSourceStateInfo externalSourceStateInfo, ExternalSourceStateInfo prevExternalSourceStateInfo,
    Int32 index, ConnectionInfoManager connectionInfoManager, ExternalDataScenario scenario, DataOperation dataOpe... fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12* w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     8xk9 Medium   ...ration, Boolean verifyPreOperationConnection), Data Connection Name: PowerPivot Data, SessionId: 1.V21.4PI+fCwIq52LH++nOoMzs90.5.en-US5.en-US73.-0060#0000-10-00-05T03:00:00:0000#+0000#0000-03-00-05T02:00:00:0000#-006036.bfceb31b-7122-46ca-9e2a-ae52cefcfcaf1.N,
    UserId: 0#.w|contoso\manager fb614a65-e398-4b97-a98d-fb7b23eab39f
    My server and client olap versions are the same: MSOLAP.5, i used sql server 2008 R2 SP1 and sharepoint 2010 SP1 and reboot or iisreset have no effect
    Thanks in advance for your help

    Hello Challen Fu
    I would be so grateful if you could please help me out
    I have been trying to find a solution to the same error message
    In my case, the power pivot reports were working before on a regular team  site , but then two things changed:
    a)  I  created a toplevel site using the BI Center template. Now I am using a Business Intelligence template , created a power pivot gallery library and uploaded a few powerpivot reports
    b)  On the  backend, the database instance was upgrated to SQL Server 2012 
         Front end Server VDSP01  remains  SQL Server 2008 R 2 where Sharepoint 2010  was installed as a FARM  
    Now, the reports will display in sharepoing however they will not refresh. the error message i get is the same.
     Scenario recap:
    a- Server VDSP01  uses SQL Server 2008 R 2 where Sharepoint 2010  was installed as a FARM
    b- On the back end,  the database instance name was replaced with SQL 2012 Server:
               from SQL Server 2008 R 2 (instance DBDEV-COTS\COTS)
               to     SQL Server 2012 ( instance VTSQL01\COTS)
    c-  I was told that:
         From VDSP01, they ran
    CliConfg.exe   to create SQL Server Alias :
           where    BEFORE: vdsharepoint -->  DBDEV-COTS\COTS
                and  AFTER    : vdsharepoint -->  VTSQL01\COTS
     I appreciate in advance any help you can provide<v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe" stroked="f">
      <v:stroke joinstyle="miter">
      <v:formulas>  <v:f eqn="if lineDrawn pixelLineWidth 0">
      <v:f eqn="sum @0 1 0">
      <v:f eqn="sum 0 0 @1">
      <v:f eqn="prod @2 1 2">
      <v:f eqn="prod @3 21600 pixelWidth">
      <v:f eqn="prod @3 21600 pixelHeight">
      <v:f eqn="sum @0 0 1">
      <v:f eqn="prod @6 1 2">
      <v:f eqn="prod @7 21600 pixelWidth">
      <v:f eqn="sum @8 21600 0">
      <v:f eqn="prod @7 21600 pixelHeight">
     <v:f eqn="sum @10 21600 0">
    </v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:formulas>
     <v:path gradientshapeok="t" o:connecttype="rect" o:extrusionok="f">
    <o:lock aspectratio="t" v:ext="edit">
    </o:lock></v:path></v:stroke></v:shapetype> <v:shape alt="" id="Picture_x0020_2" o:spid="_x0000_i1025" style="width:630pt;height:475.5pt;" type="#_x0000_t75">
    <v:imagedata o:href="cid:[email protected]" src="file:///C:\Users\wlarange\AppData\Local\Temp\msohtmlclip1\01\clip_image001.jpg">
    </v:imagedata></v:shape>
    wanda larangeira

  • Highlighting  Source Data When Chart is been moved to Another Sheet?

    Hi,
    I know that when a chart is chosen, it's corresponding data becomes highlighted when the two (table and chart) are on the same sheet. Is there a way to highlight the data when the two are on separate sheets, so one could toggle between the two sheets and make changes as necessary? I know I can move the chart back to the data sheet, make the changes and then move it back again to its own sheet. I have to do this, anyway, if I want to crop the chart (without deleting data) or shift the data in the chart to the right by a column or two, for example, but it would be so much nicer, if I could just highlight the data 'remotely' from the chart, so-to-speak. I have a couple of other reasons for wanting to do this also:
    (1) I make my charts almost full screen size, so moving them back to the data sheet cuts them off (tough to see any changes without scrolling or shrinking the chart).
    (2) I have multiple data tables on one sheet with multiple charts to complement the data tables. Putting all the charts and data on the same sheet can make for one very untidy sheet no matter how big the screen.
    I've looked around on the forum and in Numbers Help, but found only one reference to moving charts to separate sheets. Unfortunately, it didn't address this particular issue. If I can suggest this to the Numbers developers, where can I go?
    Thanks!

    Hello
    The only workaround that I found is to use an auxiliary table in the sheet where you display the chart.
    In this auxiliary table the used formula is:
    =Feuille 1 :: Tableau 1 :: A
    Yvan KOENIG (from FRANCE mercredi 27 février 2008 16:00:7)

  • Does hidden column data always show up in charts? Id prefer it not.

    Ive got a long time series I like to keep updated in one table, and sometimes I like to use that data for a chart with all of the numbers, and sometimes, just a short section of the beginning (annual numbers) and the latest figures at the end of the series (monthly). So I hide the monthly data (for example, columns e through s) and want to show a,b,c,d, and t through z. But if you chart that series, with E-S hidden, they still show up in the chart.
    Is there some way to make those hidden series not show in the chart? Or do I have to keep one full series table, and then another table with only the data I want to chart?
    thx

    gdd9000 wrote:
    Is there some way to make those hidden series not show in the chart? Or do I have to keep one full series table, and then another table with only the data I want to chart?
    We have to keep two tables.
    Yvan KOENIG (from FRANCE lundi 8 décembre 2008 19:16:52)

  • Little help with complex XML data as data provider for chart and adg

    Hi all,
    I've been trying to think through a problem and Im hoping for
    a little help. Here's the scenario:
    I have complex nested XML data that is wrapped by subsequent
    groupings for efficiency, but I need to determine if each inner
    item belongs in the data collection for view in a data grid and
    charts.
    I've posted an example at the bottom.
    So the goal here is to first be able to select a single
    inspector and then chart out their reports. I can get the data to
    filter from the XMLListCollection using a filter on the first layer
    (ie the name of the inspector) but then can't get a filter to go
    deeper into the structure in order to determine if the individual
    item should be contained inside the collection. In other words, I
    want to filter by inspector, then time and then tag name in order
    to be able to use this data as the basis for individual series
    inside my advanced data grid and column chart.
    I've made it work with creating a new collection and then
    looping through each time there is a change to the original
    collection and updating the new collection, but that just feels so
    bloated and inefficient. The user is going to have some buttons to
    allow them to change their view. I'm wondering if there is a
    cleaner way to approach this? I even tried chaining filter
    functions together, but that didn't work cause the collection is
    reset whenever the .refresh() is called.
    If anyone has experience in efficiently dealing with complex
    XML for charting purposes and tabular display purposes, I would
    greatly appreciate your assistance. I know I can get this to work
    with a bunch of overhead, but I'm seeking something elegant.
    Thank you.

    Hi,
    Please use the code similar to below:
    SELECT * FROM DO_NOT_LOAD INTO TABLE IT_DO_NOT_LOAD.
    SORT IT_DO_NOT_LOAD by WBS_Key.
        IF SOURCE_PACKAGE IS NOT INITIAL.
          IT_SOURCE_PACKAGE[] = SOURCE_PACKAGE[].
    LOOP AT IT_SOURCE_PACKAGE INTO WA_SOURCE_PACKAGE.
            V_SYTABIX = SY-TABIX.
            READ TABLE IT_DO_NOT_LOAD into WA_DO_NOT_LOAD
            WITH KEY WBS_Key = WA_SOURCE_PACKAGE-WBS_Key
            BINARY SEARCH.
            IF SY-SUBRC = 0.
              IF ( WA_DO_NOT_LOAD-WBS_EXT = 'A' or WA_DO_NOT_LOAD-WBS_EXT = 'B' )     
              DELETE IT_SOURCE_PACKAGE INDEX V_SYTABIX.
            ENDIF.
    ENDIF.
          ENDLOOP.
          SOURCE_PACKAGE[] = IT_SOURCE_PACKAGE[].
        ENDIF.
    -Vikram

  • Standard SAP reports for detailed Service Entry Sheet data

    Hi All,
    I am searching for standard SAP reports to extract the detailed Service Entry Sheet data out of SAP. For example, I need the deailed information like Service Entry Sheet Number, Purchase Order Number, PO line item number, short text, Posting Date, External Number, Service number, Quantity, Gross Price, Cost Object (Order or Network or WBS), Personal Number (if applicable), workday. I couldn't find any standard report. So if anyone know it, please help me.
    Thanks,
    Ting

    Hi,
    In ME2S also you can get good report by execution and by clicking SO/ PO number.( where cost object can be viewed)
    If you are very much specific, go for development
    Regards,
    Biju K

  • Upload plan data for balance sheet accounts

    Hi Experts,
    Is there a way to upload plan data for balance sheet accounts? I can upload revenue/cos and expenses through the profit center and cost center uploading but need to upload balance sheet accounts as well. Any  help would be much appreciated. Thank you.

    Loading balance sheet accounts using the Excel load to profit center tells me that I selected balance sheet accounts that cannot be entered manually. Not sure what this means... if I have an accounts receivable account, how would I find another equivalent account?

  • In the latest version of Pages (5.0) I cannot find the refresh button to update a chart copied from Numbers (also latest version 3.0). Can anyone help?

    In the latest version of Pages (5.0) I cannot find the refresh button to update a chart copied from Numbers (also latest version 3.0). I saved my Numbers document before copying to Pages. Can anyone help?

    I think you identified my mistake. I confused tables-charts-graphs. I was wanting a "table" of cells (numbers) to be added to the Pages document. Is there no way to do that and keep the tables linked between Numbers09 and Pages09?
    An example would be a Numbers spreadsheet calculating a number (say, a product price) and that number (data) be linked to a product information text in Pages.
    I just recently saw the Merge function in Pages, but have not yet learned how that works. I don't use Pages much at all but it would come in handy for creating to information sheets about products --- with the product pricing being updated from a Numbers spreadsheet.
    If you have any hints on how that can be done or where I can find info on that I would appreciate it.
    Thanks for catching my misunderstanding.
    Bill

  • Screen refresh problem where data is entered and the screen doesn't refresh

    Many people in the company are experiencing the odd screen refresh problem where data is entered and the screen doesn't refresh to show the updated result in corresponding cell formulas.
    Microsoft have issued a hotfix to fix the issue for Excel 2003 as shown. Microsoft released a hotfix for this problem (<a href="advisory?ID=978908">KB978908</a>). Display memory tends to pick up data from hidden sheets and pastes it
    into the active screen. No impact on the file. This occurs when protecting and unprotecting worksheets in VBA. I also suspect that enabling and disabling screen refresh contributes to this problem. In any case there is a fix, albeit with the following disclaimer:
    As of yet I have not been able to find a fix for this for office 2010 and 2013, Any suggestions would be great.

    Hi,
    Based on your description, Excel does not show the text strings when you typing. It may be caused by the cell format, if we set the cell format as ";;;" in custom format, it will not display the text that you typed. 
    And the issue may be caused by the third-party input method, there are some compatibility issue between them.
    If the issue still exits, please try the following methods
    Verify/install the latest updates
    Repair your Office program
    Regards,
    George Zhao
    TechNet Community Support

Maybe you are looking for

  • Unit of Measurement issue in COR6

    dear all while doing COR6.getting error "units of different dimensions can not be converted" what this means and how can i solve it? Edited by: Lakshmipathi on Sep 29, 2011 1:46 PM Please use the subject effectively

  • Using airport disc as a music server, and playing music over airtunes

    I know that I can put my itunes library on an external hard drive, and that I could access this external hard drive wirelessly if I attached it to an airport extreme. However, if i did this would I still be able to play music over airtunes. It seems

  • Can I update iPhoto 8.1.2 directly to 9.5.1?

    I was finally able to reinstall iPhoto on my iMac. However, I'm running Maverick and my iPhoto version is 8.1.2 - can I upgrade directly to 9.5.1 from the Apple store?  I've been trying to download various updates to iPhoto but am unable to do so. I

  • Printer not found all of a sudden

    I've been merrily printing away from safari to my wireless HP Photosmart C4700 printer for a few months utilizing HD Print Magic when all of a sudden today it's not working.  When I click print in safari to print a page, it says printer not found.  N

  • Adjusting exposure turn white areas into light blue

    Hi All, During testing the Aperture2 trial I noticed that adjusting the exposure turned pure white area's into a light blue. It happened with a raw image from an Olympus E-400 that has a white background and is pure white close to a window. Since it