Health app: bug in daily average for sleep in year view?

I've manually entered sleep time for everyday since August 2014 in the Health app (on iOS 8, on an iPhone 6).
In Day, Week, and Month view, the daily average seems correct (resp. 7h49, 7h09, 7h09).
But it is obviously wrong in the Year view (12h36mn).
Also the graph in the Year view is wrong. (The bar for August is twice as high as the one for October for instance.)
(I've check -3 times- that these manually entered data were correct.)
Does anybody experience the same problem?
Or as any idea what the bars, in the Year Graph, are supposed to represent? (daily average for each month? or total sum of sleep time for the month?)
Thanks in advance!
Antoine

The Health App really serves as a conduit between a variety of other apps that wouldn't ordinarily be able to talk to each other. The App Store has a section for apps that work with Health to be able to sync data.
You can submit feedback to Apple here:
http://www.apple.com/feedback
Don't stress to much if you can't find a section dedicated to Health. Pick something under "iPhone" and just make sure you explain it well.

Similar Messages

  • Apple Health App-Bug

    I find Apple's Health app only reports and exports the first sleep session of a day. For instance, today it reports me sleeping 3 hours rather than my six (two 3-hour sessions).
    Does anyone else see this?

    Hi Ralph,
    I had this same exact issue as well as my iTunes library.I was able to resolve it by doing the following:
    1. Open Settings
    2. Tap on iTunes & App Store
    3. Tap your Apple ID
    4. Tap View Apple ID
    5. Sign into the store
    6. Tap done
    7. Launch iTunes Radio and try again!
    I hope the above resolves it for you.

  • Calculating average for periods between years

    Hello,
    I'm stuck with creating calc script to calculate period average. There are 12 periods (P1 to P12) and Years. For certain account member (AV Balance) I need to calculate the average of another account member (Balance) for current period and the previous one, so if account "Balance" is 100 for P1 and 200 for P2, account "AV Balance" for period P2 should be 150. That's easy. The problem is that if I need to calculate the average for period P1, the calculation must take P1 for current year and P12 for previous year, can you advice me on how to create the calc script?
    What I have at the moment (I'm very new in calc scripts) is for each period (except P1 as it has to use P12 from prior year):
    FIX (P2)
    "AV Balance"=@SUMRANGE ("Balance","P1":"P2")/2;
    ENDFIX
    FIX (P12)
    "AV Balance"=@SUMRANGE ("Balance","P11":"P12")/2;
    ENDFIX
    Kind regards
    Marcin Stawny

    My first question is are your periods in a dense dimension if so, your calculation will calculate every single block in the database. This might be better if .
    you did it as a formula using currmbrrange
    something like
    IF(@ISMbr("Jan"))
    Balance + @shift(Balance,-1,years);
    else
    @avgrange(skipmissing,Balance,@CURRMBRRANGE(Period, LEV, 0,-1,0));
    endif
    Note, I have not syntax checked this and I'm really bad at getting the correct number of parens, also you might want to put a second if statement wrapping this to only do it at level zero of periods. I would make this member dynamic and you might need to make it two pass

  • All of my downloaded Apps I have been using for over a year, none will open, they only flash when the icon is touched.

    All of my downloaded apps will not open, how do I correct this? The same thing happened a few days ago, but when I received an alert from the sport app, all the games opened up and I could use them. This morning they are all closed again. Everything else that's on the ipod is working fine.

    - Reset your iPod, nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Make sure all the apps are up to date.
    - Download/install a new app
    - Restore the iPod from backup
    - Restore the iPOd to factory defaults/new iPod

  • This bug has been around for over a year: SecurityError: Error #2123: Security sandbox violation

    Hi,
    The bug of 'SecurityError: Error #2123: Security sandbox violation: BitmapData.draw: file:///xxx/xxx.swf cannot access rtmfp://fms4.acrobat.com/cocomo/na2-sdk-xxx/xxx. No policy files granted access.' was first reported in lccs forum over a year ago:
    http://forums.adobe.com/message/2803074
    But the bug is still around. The bug can be generated by calling BitmapData.draw() on a flash.media.Video object which is attached to a p2p stream. It looks like the solution is to have the publisher to call:
    send("|RtmpSampleAccess", true, true)
    on the NetStream object _before_ the subscriber calls NetStream.play(), in order to give the permission to subscribers for audio and video streams.
    In lccs library, the above permission authorisation happens in WebcamPublisher:
    protected function onNetStatus(p_evt:NetStatusEvent):void
    if (p_evt.info.code=="NetStream.Connect.Success") {
    setTimeout(sendSnapShotPermission, 500);
    _stream.send("|RtmpSampleAccess", true, true);
    protected function sendSnapShotPermission():void
    _stream.send("|RtmpSampleAccess", true, true);
    but it doesn't help the problem. In fact, it is not clear to me when this 'snap shot permission' is sent to the subscriber.
    One more note: This is not a critisism for the lccs development quality, but rather a question on how ready lccs is for production use. After encountering this bug, I had to go through the lccs code (the open source parts), and found out that the library is not really written, well, carefully, and it is full of temporary quick-n-dirty fixes.
    For instance in the above example, sendSnapShotPermission() is called after 500 milliseconds, probably to allow something to happen before calling the method, but how can you be sure that it will happen in 500 milliseconds? Probably,an event listener should have been used. Immediately in the next line, we see:
    _stream.send("|RtmpSampleAccess", true, true);
    which is a duplicate of sendSnapShotPermission(). many examples like this can be found throughout the library.
    Aureliano

    Hi Nigel,
    Two questions:
    1. When the publisher sends the access permission to the subcriber by:
    netStream.send("|RtmpSampleAccess", true, true)
    , on the subscriber side, what event or function can handle the guaranteed receipt of the access permission? Currently it is possible to draw the incoming stream video upon receiving NetStream.Play.Star and waiting for 5 seconds or so:
    public class MyWebcamSubscriber extends WebcamSubscriber {
    override protected function layoutCameraStreams():void
    // trying the event listener seems to work here.
    _streamManager.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
    override protected function onNetStatus(e:NetStatusEvent):void
    super.onNetStatus(e);
    case "NetStream.Play.Start":
    setTimeout(function():void {
    // draw the video from the incoming stream here.
    }, 5000);
    The questions is, which event can let the subscriber know that it has the access permission to the video stream?
    2. In WebcamPublisher, why is that the access permission is sent 3 times?
    a. Once on receiving NetStream.Connect.Success with 0.5 second delay, as in below.
    b. Once immediately upon receiving NetStream.Connect.Success, as in below.
    protected function onNetStatus(p_evt:NetStatusEvent):void
    if (p_evt.info.code=="NetStream.Connect.Success") {
    setTimeout(sendSnapShotPermission, 500);
    _stream.send("|RtmpSampleAccess", true, true);
    protected function sendSnapShotPermission():void
    _stream.send("|RtmpSampleAccess", true, true);
    c. Once in onConnectionTypeChange() with 2 seconds delay:
    protected function onConnectionTypeChange(p_evt:StreamEvent):void
    if ( _streamManager.isP2P) {
    _stream= new NetStream(_connectSession.sessionInternals.session_internal::connection as NetConnection,NetStream.DIRECT_CONNECTIONS);
    setTimeout(sendSnapShotPermission, 2000);

  • Health App tracking issue

    Since the latest update to the Apple Health App.  My daily calories burned no longer tracks properly on the dashboard graph.  It will show what's loaded from other apps and manually enter correctly for the current day, but prior days are gone.  This has happened every day since the last update.  All the other information like step, distance ran, etc are still tracking correctly.  Is this a common issue with the update?  or this their something I can do to correct the problem? 

    Settings>Privacy>Motion & Fitness>Fitness Tracking>Off

  • Health app not measuring walking distance

    The health application is working perfectly for step counting,but does not measure correctly the waking distance.The problem began at 11 or 12 of March,I think after the iOS 8.2 update.Before this date it worked absolutely fine.So everyday I have an average of 5.500 steps and of 0.17km

    nappin,
    Mine seems to be working much better now. I find that there is often a lag of up to 15 minutes between the data being taken and the time it shows up in the app.
    I one instance, it shows that I climbed a flight of stairs at 10:03, but it was not added to the health app until 10:15. For other data the two times match.
    I don't know why your data does not display on the dashboard. Perhaps you can find an answer in some of the other threads on this topic.

  • Health app

    Hi,
    I downloaded the new software but somehow the options in the health app are not working. For example, steps and walking + running distance are not working-  I am not sure how to turn it on ( not even if we have to). Can anyone help me please?
    Many thanks

    eddyfromtoronto wrote:
    I have the same issue with the 6+ ios8.1
    Where in the Health App can you record glucose?  I look in the "all" and can't find it.

  • IPhone 6 Health App not tracking anything

    I was hoping 8.1 would fix the Health app, but it's still not working for me.
    It doesn't track any steps.  When I restart the app my dashboard is reset to empty and I have to add things back on the Dashboard.
    Is anyone else experiencing similar issues?

    nappin,
    Mine seems to be working much better now. I find that there is often a lag of up to 15 minutes between the data being taken and the time it shows up in the app.
    I one instance, it shows that I climbed a flight of stairs at 10:03, but it was not added to the health app until 10:15. For other data the two times match.
    I don't know why your data does not display on the dashboard. Perhaps you can find an answer in some of the other threads on this topic.

  • HT6446 My Health Data is showing my total steps for Daily average....

    specs:
    Using Apple Health App, with the Withings Health Mate and My Fitness Pal as the only 2 sources.
    Using an iPhone 5s with  26.7 GB capacity 4.2 GB available
    Model Number NE299LL/A
    OS Version 8.1 (12B411)
    I Updated all my Apps. I have gone into the Health Apps "all Data, and cleared all" this reset my dashboard to 0 steps. then after closing and opening both apps. I am right back to where i started. my "Daily Average" is showing my total steps. (or possibly dividing by 1)

    Well, I have just completed a full restore of my iPhone. It was not smooth at first. The restore froze about 10% through and I ended up having to hard reset the phone and start over. The second restore went smoothly but unfortunately, this did not solve anything.  All 3 iPhone measuresble components (flights climbed, steps and walking + running distance) still show "No data". I always had the option to enter manual data points, but I never actually tried to as I have no way of determining these 3 things.
    I will call Apple support back, but their only option will be to replace the phone. I really don't want to do that, not only because I don't want to have to set up the device for a third time, but I dont want some white box device; I want my brand new, immaculate one. Besides, it's clearly a software issue and likely to happen again with a new device. I guess Apple won't look into this as a software issue until enough people call in about it. That said, please take a few minutes and call Apple about this if you're one of the people affected.
    I will report back after speaking with Apple, but as I said, I doubt they're going to have anything other than a device replacement as a solution.

  • Can anybody explain why my health app tracks my steps accuratly on a daily basis but the weekly and daily averages it provides make no sense to me ?

    Can anyone explain to me why my health app tracks my steps daily accurately but the weekly and daily AVERAGES it provides make no sense to me

    I have asked a moderator to provide assistance, they will post an invite on this thread.
    Once you get a reply, if you click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Health App sleep analysis

    I'Be tried a few different sleep monitoring apps - Fitbit, Jawbone, Sleep Cycle and the Withings Aura - and get a lot of good data from them but when I connect. To the Health App all I get is a vertical bar on the week data chart to show how long I was in bed and a horizontal bar on the daily view.
    is this really all it pulls through and shows in the health app?  The areas around steps etc seem quite detailed but the sleep data is pretty useless unless I'm missing something.
    Also, is there any way to log other health related stats such as cholesterol which I know can't be done from any app but I have a full medical every year and would like to be able to manually input some of the outputs I get from that.
    IS there any forum for feeding suggestions/requests to Apple or would it just rely on them monitoring these posts?
    thx
    David

    The Health App really serves as a conduit between a variety of other apps that wouldn't ordinarily be able to talk to each other. The App Store has a section for apps that work with Health to be able to sync data.
    You can submit feedback to Apple here:
    http://www.apple.com/feedback
    Don't stress to much if you can't find a section dedicated to Health. Pick something under "iPhone" and just make sure you explain it well.

  • Instructions for the Health app

    Where are the instructions for the Health App?

    The Health dashboard suddenly becoming blank is due to a bug in 8.0.2 Health App.
    Many people have found success in getting the data display back by turning the phone off / on again, however the problem will return eventually.
    I have had this issue occur several times already. I have found that when this problem occurs, it can be ignored as MyFitnessPal is still collecting data.
    The next day when I open Health, in my experience, the dashboard is empty but all of the data (charts, etc) is there. I just have to re-select my dashboard items.
    I'm hoping 8.1 will resolve a lot of these nagging bugs in iOS 8.

  • Creative Cloud - BUG Changing Installation Directory for Apps

    I searched and could only find this similar post here
    http://forums.adobe.com/message/5498967#5498967
    Which stated the issue I am experiencing.  In the preferences of the creative cloud desktop program I changed the installation directory to D drive because I have my main hard drive partitioned and the programs would take up too much space on C.  Regardless of the change in preferences the applications were still installing to my C drive.  I tried restarting and reinstalling and nothing seemed to work. 
    Finally I decided to reallocate my D partition back to C, I have yet to complete this because I am waiting for all the data on D to be transferred to an external drive so I can recombine it to C without losing data ( I don't know if this is necessary, I haven't recombined partitions in the operating system before, but just to be safe)
    ANYWAY
    As I am waiting for the transfer (Over 120gbs takes a while)  I changed the installation directory in the Creative Cloud preferences back to C and went ahead and installed the program I was trying to prior to all this.  Guess What?  It installed to my D drive!!!
    This isn't a serious bug for me, just incredibly annoying and causing a lot of extra work on my part just to install the program I wanted.  However for someone who requires a different directory to install to and cannot rearrange their computer to accommodate this bug I could see it being more serious.  Has anyone else had this issue and did you find a solution?  Thanks.
    P.S. Adobe you rock, I hope your other CC programs don't feel rushed for release like your installer does

    ADOBE WILL TRY TO DELETE YOUR LEGACY APPS!!!!  Do NOT let them! They could put you out of business! Here is a tech support transcript, see for yourselves:
    Vipin: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    ADOBE CUSTOMER: I need to know that NONE of my legacy adobe apps will be affected. CS5 suite and CS6 products will NOT be affected is that right??????????????
    info: Your chat transcript will be sent to dixxx.net at the end of your chat.
    Vipin: It will be affected.
    ADOBE CUSTOMER: WHOA! you are saying that my CS% and CS 6 apps will be hurt and not run correctly is that right?
    Vipin: We need to remove all the Adobe apps installed on your computer.
    Vipin: Is that okay.
    Vipin: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    ADOBE CUSTOMER: There is no way I give permission to delete CS5 creative suite, CS6 video production suite or hurt them in any way what so ever. I have THOUSANDS of dollars of plugins and other workfow products that depend on them. Sorry but my only recourse is to
    ADOBE CUSTOMER: see if you have ANY loyalty to an OVER 30 years adobe customer (me) when you demand payout for the remaining 5 months of the subscription. I'm betting you will just send the bill to collections for non payment. If so, you WILL be sued for non service and non delivery of product. And yes, I am ready to spend over xxxx on a suit vs adobe because of how you have treated me. The point is I know that I am not alone, and that's sad.
    Then after TECH NO SUPPORT, CSRs try to 'handle' me:
    If you do decide to cancel, we can refund your subscription.
    If you stay with the service, we can provide 2 free months as an apology for the technical difficulties. We cannot provide a free year.
    Please let me know which you would like to do.
    Thanks,
    Britt
    Like · Reply · 35 mins
    ADOBE CUSTOMER:You want me to stay with a service that provides no product? And has not provided me with a usable product since October of 2014? And now the word is out that you are raising subscription prices after the first year? Who do you think you are? You HURT peoples ability to earn a living! You cost us hours and days and months trying trying to fix your problems so we can move forward with your products? Who in the hell do you think you are? Tell you what, dont cancel a thing. A media blitz and maybe a subpoena to San Jose is the right move to protect peoples rights. Your company needs to learn a lesson in how to treat legacy customers. It seems no one has taught you that "if you take care of the customer, they will take care of adobe." Britt, care to guess how many dollars I have given adobe in almost 30 years?
    Adobe Creative Cloud Hi ADOBE CUSTOMER:
    We value all our customers and would love to help resolve your issue. Would you like to arrange a callback with tech support? I can make sure the technician is a senior staff member that can offer more troubleshooting solutions. Let me know if you would like to schedule this, and what a suitable time would be.
    Thanks,
    Britt
    Like · Reply · 19 mins
    Adobe Creative Cloud Regarding Creative Cloud prices, it is noted on the purchasing page that some subscriptions offer "promotional rates for the first year only." Our full subscription terms can be viewed here: https://www.adobe.com/misc/subscription_terms.html
    -Britt
    Like · Reply · 18 mins
    ADOBE CUSTOMER: You see, that is EXACTLY how you should take care of a customer. Tell them they are wrong and have it NOT RELATED to a simple request to FIX a company software PROBLEM. Tell your customers that after FOUR months of unusability of your product, DAYS of the customer trying to fix the company problem, that your solution is give them TWO months FREE then JACK the price up for them! You MUST have thousands of people in LINE to YOU to get this celebrated DEAL!
    Like · Reply · 6 mins
    ADOBE CUSTOMER: I have a hunch some adobe board members are going to have fun with your conversation and offer, Britt. I would hush up now before you have to look for a different job because I know you mean well BUT you have no experience or skills solving a client's issues and in fact, you are hurting adobe's future earnings.
    Like · Reply · 2 mins
    Adobe Creative Cloud I apologize for the frustration regarding Adobe's pricing policy, Kee. Please let me know if you would like additional help troubleshooting the problem. We would love to locate the cause of the download issue and get this resolved for you.
    Thanks,
    Britt
    Like · Reply · 7 mins
    ADOBE CUSTOMER: The Russian cracked version of PS 2014 will have to do on another clients machine until you have a total new WORKING release. I'm tired of being your company's test pig, doing the boiler plate cleaner routines, and having the same failures. It's one thing to have broken software, but NOT acceptable to treat customers the way I have been treated, and then, be greedy on a remediation offer from you.
    You say,"We value all our customers."  Again, clearly NO ONE from the BOD has taught you that if you take care of the customer, then the customer will take care of adobe.
    You guys and gals have essentially asked for a fight, and a fight you shall have. good night.

  • Average Daily Requirement for a Material

    I'm looking for a function module or BAPI that will calculate the average daily requirement for a material.  Please point me in the right direction where I can obtain this calculation.
    Thanks

    I found this thread while performing a search.  While it is old, I thought it a good idea to provide the solution in case others are looking for the answer in the future.  Use FM MD_STOCK_REQUIREMENTS_LIST_API.  Table MDSUX will contain the average daily requirement as well as other useful data like target stock.

Maybe you are looking for

  • Problem with purchase order history

    Hi, i have the following problem I create a service purchase order for the quantity of 36000 and amount of 1350 (0.0375 per unit) Step 1: I entered a service entry sheet: quatity: 17800 Value: 667.5 The system create a 101 for the amount of 667.5. Th

  • Size available on mailbox disk

    Hi all, Im running this command : Get-MailboxDatabase -Status | Sort-Object DatabaseSize -Descending | Format-Table Name, DatabaseSize, AvailableNewMailboxSpace Then i get info about database size and Available New mailbox Space (white Space). What i

  • Problem with the "required" attribute in input_text (in 1.0 beta)

    Suppose you wanted to display a more meaningfull message instead of the default "Validation Error: Value is required", e.g. "Please enter your e-mail address". Looks like the only way to do this is to write a custom validator. However, if required="t

  • Hotspot notworking at os 10.311.1779

    Hi, I update my os up to 10.3.1.1779 , and my hotspot does not work? What can i do ....?

  • How my adobe flash plugin is always crashed

    adobe flash player plugin always crash since the update Firefox. my adobe plugin is updated and it still does not work. there must be a solution. thank you