A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Make Recordsets updateable on a Form in Access.



 
 
Thread Tools Display Modes
  #1  
Old August 6th, 2004, 10:13 PM
green_jello1701
external usenet poster
 
Posts: n/a
Default Make Recordsets updateable on a Form in Access.

I've made a form from a query that has several enteries on it, so I created
combo boxes for the two items that have the various enteries in DESIGN form.
When I go into the application, the program tells me that the 'Recordset is
not updateable.'

What is wrong with it?
  #2  
Old August 6th, 2004, 10:33 PM
Duane Hookom
external usenet poster
 
Posts: n/a
Default Make Recordsets updateable on a Form in Access.

Is your form's record source (view it in datasheet view) updateable? What is
the SQL of your query.

--
Duane Hookom
MS Access MVP


"green_jello1701" wrote in
message ...
I've made a form from a query that has several enteries on it, so I

created
combo boxes for the two items that have the various enteries in DESIGN

form.
When I go into the application, the program tells me that the 'Recordset

is
not updateable.'

What is wrong with it?



  #3  
Old August 6th, 2004, 11:11 PM
external usenet poster
 
Posts: n/a
Default Make Recordsets updateable on a Form in Access.

The SQL is as follows:

SELECT Training_Records.Instructor,Training_Records.[Course_Name],
Sum(Training_Records.[Number of Hours]) AS [SumOfNumberofHours],
Avg(Training_Records.[Number of Hours]) AS [AvgOfNumberofHours],
Min(Training_Records.[Number of Hours]) AS [MinOfNumberofHours],
Max(Training_Records.[Number fo Hours]) AS [MaxOfNumberofHours],
FROM Training_Records
GROUP BY Training_Records.Instructor, Training_Records.[Course Name]
ORDER BY Training_Records.[COURSE Name];


"Duane Hookom" wrote:

Is your form's record source (view it in datasheet view) updateable? What is
the SQL of your query.

--
Duane Hookom
MS Access MVP


"green_jello1701" wrote in
message ...
I've made a form from a query that has several enteries on it, so I

created
combo boxes for the two items that have the various enteries in DESIGN

form.
When I go into the application, the program tells me that the 'Recordset

is
not updateable.'

What is wrong with it?




  #4  
Old August 7th, 2004, 12:43 AM
Duane Hookom
external usenet poster
 
Posts: n/a
Default Make Recordsets updateable on a Form in Access.

Group By queries are never updateable. Which field did you think you could
(or would want to) update?

--
Duane Hookom
MS Access MVP


"
m wrote in message
...
The SQL is as follows:

SELECT Training_Records.Instructor,Training_Records.[Course_Name],
Sum(Training_Records.[Number of Hours]) AS [SumOfNumberofHours],
Avg(Training_Records.[Number of Hours]) AS [AvgOfNumberofHours],
Min(Training_Records.[Number of Hours]) AS [MinOfNumberofHours],
Max(Training_Records.[Number fo Hours]) AS [MaxOfNumberofHours],
FROM Training_Records
GROUP BY Training_Records.Instructor, Training_Records.[Course Name]
ORDER BY Training_Records.[COURSE Name];


"Duane Hookom" wrote:

Is your form's record source (view it in datasheet view) updateable?

What is
the SQL of your query.

--
Duane Hookom
MS Access MVP


"green_jello1701" wrote in
message ...
I've made a form from a query that has several enteries on it, so I

created
combo boxes for the two items that have the various enteries in DESIGN

form.
When I go into the application, the program tells me that the

'Recordset
is
not updateable.'

What is wrong with it?






  #5  
Old August 7th, 2004, 06:29 AM
external usenet poster
 
Posts: n/a
Default Make Recordsets updateable on a Form in Access.

I want to update the Instructor and the Course to be updateable. For example,
I want to see Instructor X has how many hourse for Course B. That's how I
want both the query and the form to do.

"Duane Hookom" wrote:

Group By queries are never updateable. Which field did you think you could
(or would want to) update?

--
Duane Hookom
MS Access MVP


"
m wrote in message
...
The SQL is as follows:

SELECT Training_Records.Instructor,Training_Records.[Course_Name],
Sum(Training_Records.[Number of Hours]) AS [SumOfNumberofHours],
Avg(Training_Records.[Number of Hours]) AS [AvgOfNumberofHours],
Min(Training_Records.[Number of Hours]) AS [MinOfNumberofHours],
Max(Training_Records.[Number fo Hours]) AS [MaxOfNumberofHours],
FROM Training_Records
GROUP BY Training_Records.Instructor, Training_Records.[Course Name]
ORDER BY Training_Records.[COURSE Name];


"Duane Hookom" wrote:

Is your form's record source (view it in datasheet view) updateable?

What is
the SQL of your query.

--
Duane Hookom
MS Access MVP


"green_jello1701" wrote in
message ...
I've made a form from a query that has several enteries on it, so I
created
combo boxes for the two items that have the various enteries in DESIGN
form.
When I go into the application, the program tells me that the

'Recordset
is
not updateable.'

What is wrong with it?






  #6  
Old August 7th, 2004, 12:03 PM
Douglas J. Steele
external usenet poster
 
Posts: n/a
Default Make Recordsets updateable on a Form in Access.

If you just want to see Instructor X has how many hourse for Course B, what
is it you need to update?

It sounds to me as though you might have bound the Instructor and Course
Name fields from that query to combo boxes in your form's Detail section
display. What you want is to bind them to text boxes in the Detail, but have
combo boxes in the form's Header area that will let you set a filter.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)



"
m wrote in message
...
I want to update the Instructor and the Course to be updateable. For

example,
I want to see Instructor X has how many hourse for Course B. That's how I
want both the query and the form to do.

"Duane Hookom" wrote:

Group By queries are never updateable. Which field did you think you

could
(or would want to) update?

--
Duane Hookom
MS Access MVP


"
m wrote in message
...
The SQL is as follows:

SELECT Training_Records.Instructor,Training_Records.[Course_Name],
Sum(Training_Records.[Number of Hours]) AS [SumOfNumberofHours],
Avg(Training_Records.[Number of Hours]) AS [AvgOfNumberofHours],
Min(Training_Records.[Number of Hours]) AS [MinOfNumberofHours],
Max(Training_Records.[Number fo Hours]) AS [MaxOfNumberofHours],
FROM Training_Records
GROUP BY Training_Records.Instructor, Training_Records.[Course Name]
ORDER BY Training_Records.[COURSE Name];


"Duane Hookom" wrote:

Is your form's record source (view it in datasheet view) updateable?

What is
the SQL of your query.

--
Duane Hookom
MS Access MVP


"green_jello1701" wrote

in
message ...
I've made a form from a query that has several enteries on it, so

I
created
combo boxes for the two items that have the various enteries in

DESIGN
form.
When I go into the application, the program tells me that the

'Recordset
is
not updateable.'

What is wrong with it?








 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Log-in (form or event) Jackie General Discussion 7 July 21st, 2004 04:52 PM
auto entry into second table after update Tony New Users 13 July 9th, 2004 10:42 PM
Access Calendar lost General Discussion 2 July 7th, 2004 04:58 AM
Linking Excel data through Access to use a Form as an Interface Laura Links and Linking 0 March 23rd, 2004 03:59 PM


All times are GMT +1. The time now is 11:53 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.