SmartCarFun
Registered User.
- Local time
- Today, 18:35
- Joined
- Feb 17, 2012
- Messages
- 25
Hello All,
This topic relates to getting access to deliver results formatted for Minitab. I want to use the power of MS Access to do my formatting for me.
Control Charts in Minitab work on sampling data everyday for a period, say a week or a month. Each day I take say 10 sample measurements and use these for testing.
My data consists of 3 columns
01/05/2012 / 0.689606482
01/05/2012 / 0.765625
01/05/2012 / 0.803796296
02/05/2012 / 0.0209375
02/05/2012 / 0.026087963
02/05/2012 / 0.031898148
03/05/2012 / 0.066493056
03/05/2012 / 0.067905093
03/05/2012 / 0.068773148
I began by trying this SQL query, this is as far as I got, any help appreciated. Small xls file attached with sample data...
PS there are a couple of parts to this question but this is a good starting point.
This topic relates to getting access to deliver results formatted for Minitab. I want to use the power of MS Access to do my formatting for me.
Control Charts in Minitab work on sampling data everyday for a period, say a week or a month. Each day I take say 10 sample measurements and use these for testing.
My data consists of 3 columns
- Primary Key (ID)
- Date/time (Group)
- Result (Stg1)
01/05/2012 / 0.689606482
01/05/2012 / 0.765625
01/05/2012 / 0.803796296
02/05/2012 / 0.0209375
02/05/2012 / 0.026087963
02/05/2012 / 0.031898148
03/05/2012 / 0.066493056
03/05/2012 / 0.067905093
03/05/2012 / 0.068773148
I began by trying this SQL query, this is as far as I got, any help appreciated. Small xls file attached with sample data...
Code:
SELECT [REMITS Query].ID, [REMITS Query].Group, [REMITS Query].Stg1
FROM [REMITS Query]
WHERE [REMITS Query].ID IN
(SELECT TOP 10 ID
FROM [REMITS Query] AS Dupe
WHERE Dupe.Group = [REMITS Query].Group
ORDER BY Dupe.Group DESC)
ORDER BY [REMITS Query].Group, [REMITS Query].Stg1;
PS there are a couple of parts to this question but this is a good starting point.