access 2000

  • Thread starter Thread starter darren
  • Start date Start date
D

darren

please could anyone tell me how to hide a row in data base view (access
2000)thanks in advance darren
 
darren said:
please could anyone tell me how to hide a row in data base view (access
2000)thanks in advance darren

Expend your Table by a YesNo-Column "hided".
Mark every row you want to hide.

In your query you ask for every row with
hided = false

Greetings

Karsten
 
please could anyone tell me how to hide a row in data base view (access
2000)thanks in advance darren

If you mean in table datasheet view You Can't. Table datasheets aren't
designed for user interaction, and they're very limited.

Use a Query with criteria to exclude the record, and base a Form on
the query to display and edit the data.
 
darren said:
please could anyone tell me how to hide a row in data base view (access
2000)thanks in advance darren

Expend your Table by a YesNo-Column "hidden".
Mark every row you want to hide.

In your query you ask for every row with
hidden = false

Greetings

Karsten
 
Back
Top