Results 1 to 4 of 4
  1. #1
    whatwouldmattdo is offline Novice
    Windows XP Access 2010 32bit
    Join Date
    Oct 2011
    Posts
    4

    Perplexing scatter chart x-axis problem

    Hey guys,

    just have a quick question about an absolutely infuriating problem I've been facing and I hoping that someone might have come across it before..

    I have a table of data where two tests (density and temperature) are taken daily at a brewery ("Fermentation Tests") and are related by a "Fermentation" which contains information about the batch. There is a select query that figures out how many hours the batch has been fermenting when the test was taken, and the density and temperature at each point.

    Anyway this graph has worked flawlessly (attached jpeg "Working OK.jpg") until I upgraded to Access 2010. Since then the graph module doesn't seem to pick up the x-axis - even when saved, rearranged etc it just ends up plotting without an x axis (as categories?, see attached jpeg "Garr.jpg").



    When I try to edit the graph and select "Plot on x-axis" then access crashes (attached jpeg "Crash.jpg"). When I select "plot as rows" then switch back to "plot as columns" then it works again until I load the form soon after. It seems a bit temperamental.

    I've tried repairing, saving/loading as text, switching the queries around.. I'm leaning toward the upgrade being the source of the problems but the upgrade is unavoidable (corporate install) so I'll have to work around it.

    Any ideas what could be causing this or, if it is a bug in Access, are there any hotfixes or strategies to work around it? Appreciate any input on the matter.

    The query to calculate the times is:

    Code:
    SELECT tblLab_FermentTests.TestID, tblLab_FermentTests.StartBrew, tblLab_FermentTests.SampleDate, tblLab_FermentTests.SampleTime, tblBh_WortCollection.BrewDateFinal, tblBh_WortCollection.BrewTimeFinal, tblBh_Ferments.Brand, Round(([SampleDate]+[SampleTime])-([tblBh_WortCollection].[BrewDateFinal]+[BrewTimeFinal]),2) AS DaysFermented, Round([DaysFermented]*24,2) AS HoursFermented, tblLab_FermentTests.Gravity, tblLab_FermentTests.Temperature, tblLab_FermentTests.FV, tblBh_Ferments.PO
    FROM (tblBh_Ferments INNER JOIN tblLab_FermentTests ON tblBh_Ferments.Brew=tblLab_FermentTests.StartBrew) INNER JOIN tblBh_WortCollection ON (tblBh_Ferments.PO=tblBh_WortCollection.PO) AND (tblLab_FermentTests.StartBrew=tblBh_WortCollection.Brew);
    The one attached to the graph is:

    Code:
    SELECT qFvSheet.hoursFermented AS Expr1, Max(qFvSheet.Gravity) AS MaxOfGravity, Max(qFvSheet.Temperature) AS MaxOfTemperature
    FROM qFvSheet
    GROUP BY qFvSheet.hoursFermented;

  2. #2
    Stingaway is offline Efficiency Junkie
    Windows 7 64bit Access 2010 64bit
    Join Date
    Sep 2011
    Location
    The deep south. Keep going until you hit water basically.
    Posts
    224
    Three things off the top:

    1.) Does the query that runs the report run as expected? Do you see all the data points you are looking for?

    2.) If 1 is a yes, have you tried re-creating the report that you are using? I tried this recently as I was experience a similar issue and found that half way through recreating mine was actually a data issue in the query - where a conversion was taking place and a grouping in the report was screwy because of bad data.

    3.) If this solves the issue, can I bum a pint off of you?

  3. #3
    whatwouldmattdo is offline Novice
    Windows XP Access 2010 32bit
    Join Date
    Oct 2011
    Posts
    4
    Thanks for the answer Stingaway, sorry for the belated response.. For the record - I think the problem was an access 2007 to 2010 teething issue but seems to have sorted itself. I tried recreating the report but at the time that didn't do the trick, it just seemed to revert back. I guess Graph.exe was screwy.
    Anyway thanks for the suggestions - next time you're in Australia I'll definitely sort you out with some pints!

  4. #4
    Stingaway is offline Efficiency Junkie
    Windows 7 64bit Access 2010 64bit
    Join Date
    Sep 2011
    Location
    The deep south. Keep going until you hit water basically.
    Posts
    224
    I'll hold you to that.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 1
    Last Post: 06-04-2012, 07:17 PM
  2. Chart problem
    By jjob in forum Reports
    Replies: 2
    Last Post: 09-10-2011, 05:17 AM
  3. Chart form problem
    By hunsnowboarder in forum Forms
    Replies: 0
    Last Post: 07-08-2011, 06:03 AM
  4. Perplexing Problem
    By karoly in forum Access
    Replies: 2
    Last Post: 01-02-2011, 07:08 PM
  5. Running Sum Problem in Query and Chart
    By sandyg in forum Access
    Replies: 0
    Last Post: 12-01-2009, 01:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums