Welcome to Windows Help!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Information in 'form view' not displaying in 'table view'?

 
   Windows Help (Home) -> Microsoft Access RSS
Next:  Connecting Text Box in Query Criteria  
Author Message
gh05

External


Since: Feb 2, 2010
Posts: 3



(Msg. 1) Posted: Tue Feb 02, 2010 10:21 am
Post subject: Information in 'form view' not displaying in 'table view'?
Archived from groups: microsoft>public>access (more info?)

Is this a common problem? Data in certain columns in my form view are not
diaplying when i change to 'table view'. I need to perform calculations on
the data in table view but can't access it.

Any ideas? Help will be much appreciated.

Thanks.

 >> Stay informed about: Information in 'form view' not displaying in 'table view'? 
Back to top
Login to vote
Arvin Meyer [MVP]

External


Since: Dec 4, 2008
Posts: 38



(Msg. 2) Posted: Tue Feb 02, 2010 1:38 pm
Post subject: Re: Information in 'form view' not displaying in 'table view'?
Archived from groups: per prev. post (more info?)

When you say table view, do you mean the form in datasheet view, or are you
actually talking about viewing data in the tables?

If the latter, Stop. Tables are for storing data. Queries are for form and
report record sources and may calculate that data. Forms and reports are for
viewing and manipulating data.

 >> Stay informed about: Information in 'form view' not displaying in 'table view'? 
Back to top
Login to vote
John W. Vinson

External


Since: Nov 28, 2008
Posts: 104



(Msg. 3) Posted: Tue Feb 02, 2010 1:39 pm
Post subject: Re: Information in 'form view' not displaying in 'table view'?
Archived from groups: per prev. post (more info?)

On Tue, 2 Feb 2010 10:21:01 -0800, gh05
wrote:

>Is this a common problem? Data in certain columns in my form view are not
>diaplying when i change to 'table view'. I need to perform calculations on
>the data in table view but can't access it.
>
>Any ideas? Help will be much appreciated.
>
>Thanks.

That's odd. Answers to Arvin's questions will help; you might also want to
post the SQL view of the form's Recordsource. Does this happen on just one
form, or all forms? If you create a Query based on the table (all fields, no
criteria, no sorting) do you see the same oddity?
 >> Stay informed about: Information in 'form view' not displaying in 'table view'? 
Back to top
Login to vote
gh05

External


Since: Feb 2, 2010
Posts: 3



(Msg. 4) Posted: Wed Feb 03, 2010 2:23 am
Post subject: Re: Information in 'form view' not displaying in 'table view'?
Archived from groups: per prev. post (more info?)

Hi Arvin,

Thanks for the reply. It is when I try to view the data in the tables,
basically half of the data within a column has dissapeared. When I view the
form in datasheet view then the correct information is there but if I run a
query to pull the information back then it is just showing me what is held
withing the table (i.e. not much!)

Hope that makes sense.

Cheers

GH
"Arvin Meyer [MVP]" wrote:

> When you say table view, do you mean the form in datasheet view, or are you
> actually talking about viewing data in the tables?
>
> If the latter, Stop. Tables are for storing data. Queries are for form and
> report record sources and may calculate that data. Forms and reports are for
> viewing and manipulating data.
> --
> Arvin Meyer, MCP, MVP
> [URL="http://www.datastrat.com"]http://www.datastrat.com[/URL]
> [URL="http://www.mvps.org/access"]http://www.mvps.org/access[/URL]
> [URL="http://www.accessmvp.com"]http://www.accessmvp.com[/URL]
>
>
> "gh05" wrote in message
>
> > Is this a common problem? Data in certain columns in my form view are not
> > diaplying when i change to 'table view'. I need to perform calculations
> > on
> > the data in table view but can't access it.
> >
> > Any ideas? Help will be much appreciated.
> >
> > Thanks.
>
>
> .
>
 >> Stay informed about: Information in 'form view' not displaying in 'table view'? 
Back to top
Login to vote
gh05

External


Since: Feb 2, 2010
Posts: 3



(Msg. 5) Posted: Wed Feb 03, 2010 2:44 am
Post subject: Re: Information in 'form view' not displaying in 'table view'?
Archived from groups: per prev. post (more info?)

Hi John,

yes I get the same problem if I create a basic query based on the table. I
don't know about if it happens for other forms at the moment but will have a
look (the database was actually set up by a friend and it sounds like they
have even less knowledge of Access than myself!)

Unsure of how to post the SQL for a form. I thought that was only possible
for a query?

Thanks

GH



"John W. Vinson" wrote:

> On Tue, 2 Feb 2010 10:21:01 -0800, gh05 wrote:
>
> >Is this a common problem? Data in certain columns in my form view are not
> >diaplying when i change to 'table view'. I need to perform calculations on
> >the data in table view but can't access it.
> >
> >Any ideas? Help will be much appreciated.
> >
> >Thanks.
>
> That's odd. Answers to Arvin's questions will help; you might also want to
> post the SQL view of the form's Recordsource. Does this happen on just one
> form, or all forms? If you create a Query based on the table (all fields, no
> criteria, no sorting) do you see the same oddity?
> --
>
> John W. Vinson [MVP]
> .
>
 >> Stay informed about: Information in 'form view' not displaying in 'table view'? 
Back to top
Login to vote
John W. Vinson

External


Since: Nov 28, 2008
Posts: 104



(Msg. 6) Posted: Wed Feb 03, 2010 10:01 am
Post subject: Re: Information in 'form view' not displaying in 'table view'?
Archived from groups: per prev. post (more info?)

On Wed, 3 Feb 2010 02:44:03 -0800, gh05
wrote:

>Hi John,
>
>yes I get the same problem if I create a basic query based on the table. I
>don't know about if it happens for other forms at the moment but will have a
>look (the database was actually set up by a friend and it sounds like they
>have even less knowledge of Access than myself!)

You might have some corrupt Indexes. Have you compacted and repaired the
database? Are these local tables or linked?

>Unsure of how to post the SQL for a form. I thought that was only possible
>for a query?

Most forms are based on Queries, either a query built by the developer or a
hidden query created by Access. Open the form in design view and look at its
Properties. What's in the "Record Source" property? If it's the name of a
query or a SQL string, click the ... icon by it to open the query design grid;
select View... SQL to see the SQL.
 >> Stay informed about: Information in 'form view' not displaying in 'table view'? 
Back to top
Login to vote
Arvin Meyer [MVP]

External


Since: Dec 4, 2008
Posts: 38



(Msg. 7) Posted: Thu Feb 04, 2010 8:56 am
Post subject: Re: Information in 'form view' not displaying in 'table view'?
Archived from groups: per prev. post (more info?)

The first thing I'd try is to either double the row height or increase the
column width.
 >> Stay informed about: Information in 'form view' not displaying in 'table view'? 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Design View from Form View - I seem to remember that it was possible to move into design view from form view by right clicking on the mouse whilst pointing at the bar at the top of the form where the caption is held. However, I do not seem to be able to do this now. Is there a..

Cannot insert new record into sql 2005 View from Access form - I have a sql server 2005 database containing several tables: Orders, Shipping, and Planning. They are joined together in the sql view V_Main. I also have a ms access 2007 mdb that links to V_Main via odbc. I created an access form using the view..

How to view a reply to a question - I posted a question and was notified there is a reply waiting, but I only see a blank white screen. How can I view the response? Perhaps you could reply directly to my email. Thanks.

Controlling Columns in Datasheet View - Is there a way to control which columns the user displays in Datasheet view? I have certain fields hidden, and I want to prevent the user from being able to display them by going to Unhide Columns. Is there any event that is triggered when the columns...

INFORMATION - BONJOUR , JE VOUDRAIS SAVOIR SE QUE C' EST MON ADRESSE DE MASAGERIE CORDIALEMENT
   Windows Help (Home) -> Microsoft Access All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]