473,399 Members | 2,478 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

need help with vertical (columnar) datasheets

Hi All,

I'd like to include a datasheet on my user interface but since I'm
starting to run tight on space, I'd like to have a vertically-oriented
datasheet (column 1 has labels, column 2 has values), i.e. a
transposed datasheet or datasheet in column format. A vertical
datasheet will look cleaner, eliminate the need to scroll across (for
miles) and lay out bit more efficiently since I have some long labels.

It seems like Access only allows for horizontal datasheets. I can't
figure out how to make a datasheet orient in the vertical direction,
as in columns.

If a solution can maintain bound fields and controls that would be
great so that my users can use "find in form" feature rather than
trying to teach them query builder. At this point, I'm open to
hearing any and all suggestions.

Can anybody help?
Thanks,
Frances
Nov 12 '05 #1
6 4324
DFS
You won't be able to create a datasheet form that automatically reorients
your data. You'll need to write some code to transpose it from it's present
"normal" state into a two-column work table (or you could probably write a
UNION query to get it into the format you want - and base the datasheet on
the query).

It would help if you posted your table structure.


"ti33m" <ti***@yahoo.com> wrote in message
news:91**************************@posting.google.c om...
Hi All,

I'd like to include a datasheet on my user interface but since I'm
starting to run tight on space, I'd like to have a vertically-oriented
datasheet (column 1 has labels, column 2 has values), i.e. a
transposed datasheet or datasheet in column format. A vertical
datasheet will look cleaner, eliminate the need to scroll across (for
miles) and lay out bit more efficiently since I have some long labels.

It seems like Access only allows for horizontal datasheets. I can't
figure out how to make a datasheet orient in the vertical direction,
as in columns.

If a solution can maintain bound fields and controls that would be
great so that my users can use "find in form" feature rather than
trying to teach them query builder. At this point, I'm open to
hearing any and all suggestions.

Can anybody help?
Thanks,
Frances

Nov 12 '05 #2
"DFS" <no****@nospam.com> wrote in message news:<vu************@corp.supernews.com>...
You won't be able to create a datasheet form that automatically reorients
your data. You'll need to write some code to transpose it from it's present
"normal" state into a two-column work table (or you could probably write a
UNION query to get it into the format you want - and base the datasheet on
the query).

It would help if you posted your table structure.


Hi All,

The user interface is divided into 2 halves, a customer info section
and customer preference section. I have 2 tables, a tblCustomer and
tblPreference. tblPreference is linked to tblCustomer by way of a
fkey. The customer section is your usual fare: name, dob, contact
info, etc. The items in tblPreferences are all set to yes/no in the
design and on the form, they are represented by checkboxes in a
datasheet.

I am using the datasheet in an unconventional way and choose it mainly
for ease of maintenance and presentation. When Preferences are added
(and they will be in the future), once I add the field to
tblPreference, the datasheet will automatically put the new item on
the form when the form references the record source. I can do it the
harder way and draw out each individual checkbox.

As for writing code to transpose, how will that affect my users using
"Find in Form?" I use the same form for searching as for data entry
(they like that). If I write code to transpose the table, will I have
to write code when my users use "Find in Form" to feed arguments to
Access' Find In Form feature? To search, they want to do click and
fill in the blanks rather than use Query Builder.
Thanks,
Frances
Nov 12 '05 #3
DFS
Frances,

Maybe you can try to mimic a "vertical" datasheet by creating a form, adding
the fields to it and aligning them vertically, and setting form view to
continuous.

"ti33m" <ti***@yahoo.com> wrote in message
news:91**************************@posting.google.c om...
"DFS" <no****@nospam.com> wrote in message

news:<vu************@corp.supernews.com>...
You won't be able to create a datasheet form that automatically reorients your data. You'll need to write some code to transpose it from it's present "normal" state into a two-column work table (or you could probably write a UNION query to get it into the format you want - and base the datasheet on the query).

It would help if you posted your table structure.


Hi All,

The user interface is divided into 2 halves, a customer info section
and customer preference section. I have 2 tables, a tblCustomer and
tblPreference. tblPreference is linked to tblCustomer by way of a
fkey. The customer section is your usual fare: name, dob, contact
info, etc. The items in tblPreferences are all set to yes/no in the
design and on the form, they are represented by checkboxes in a
datasheet.

I am using the datasheet in an unconventional way and choose it mainly
for ease of maintenance and presentation. When Preferences are added
(and they will be in the future), once I add the field to
tblPreference, the datasheet will automatically put the new item on
the form when the form references the record source. I can do it the
harder way and draw out each individual checkbox.

As for writing code to transpose, how will that affect my users using
"Find in Form?" I use the same form for searching as for data entry
(they like that). If I write code to transpose the table, will I have
to write code when my users use "Find in Form" to feed arguments to
Access' Find In Form feature? To search, they want to do click and
fill in the blanks rather than use Query Builder.
Thanks,
Frances

Nov 12 '05 #4
If this is an application you are distributing to users, it would be a much
better idea to give them a form. There's just too much that a user can
accidentally do wrong with datasheet view, even if they aren't doing it
maliciously.

If you need to transform your data for it to be intelligibly displayed, then
chances are that you might need to redesign your tables to make it easier to
work with. The design of your tables sounds as if it may not adhere to good
relational database design principles, and those aren't just arbitrary --
they really do make it easier to work with the data.

Larry Linson
Microsoft Access MVP

"ti33m" <ti***@yahoo.com> wrote in message
news:91**************************@posting.google.c om...
Hi All,

I'd like to include a datasheet on my user interface but since I'm
starting to run tight on space, I'd like to have a vertically-oriented
datasheet (column 1 has labels, column 2 has values), i.e. a
transposed datasheet or datasheet in column format. A vertical
datasheet will look cleaner, eliminate the need to scroll across (for
miles) and lay out bit more efficiently since I have some long labels.

It seems like Access only allows for horizontal datasheets. I can't
figure out how to make a datasheet orient in the vertical direction,
as in columns.

If a solution can maintain bound fields and controls that would be
great so that my users can use "find in form" feature rather than
trying to teach them query builder. At this point, I'm open to
hearing any and all suggestions.

Can anybody help?
Thanks,
Frances

Nov 12 '05 #5
Hi All,

Thank you all for your suggestions. I was already going to use
checkboxes on my form but thought it might be better to use datasheets
because I'm trying to find a better way. I'm hoping to find a way to
display datasheets vertically rather than the default horizontal
arrangement.

As for my tables, they are normalized. The datasheet view is one
section of my form and for the following:

1. entering and displaying a small portion of the database (one
table);
2. "find in form" Access function is available without me having to
write code (one interface for data entry and searching so that users
see a consistent GUI that's intuitive); and
3. ease of maintenance (add a field in the table and viola! the field
shows up in the datasheet without further action on my part.

Is there a way to do to this short of writing code...? I'm thinking
that if I need to write code to transpose the table to make vertical
datasheets, Access' "find in form" function" will not work as is.
Thanks,
Frances

"Larry Linson" <bo*****@localhost.not> wrote in message news:<8J****************@nwrddc02.gnilink.net>...
If this is an application you are distributing to users, it would be a much
better idea to give them a form. There's just too much that a user can
accidentally do wrong with datasheet view, even if they aren't doing it
maliciously.

If you need to transform your data for it to be intelligibly displayed, then
chances are that you might need to redesign your tables to make it easier to
work with. The design of your tables sounds as if it may not adhere to good
relational database design principles, and those aren't just arbitrary --
they really do make it easier to work with the data.

Larry Linson
Microsoft Access MVP

Nov 12 '05 #6
Hi All,

I got an email message asking what "find in form" was. I meant to
write "FILTER BY FORM" (Form view > Records > Filter > Filter by Form)
in my email messages to the newsgroup. "Find in form" is my
user-friendlier button name on the database form.

My apologies for any confusion this may have caused.
Thanks,
Frances
Nov 12 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Barbara de Zoete | last post by:
On one of my pages http://home.wanadoo.nl/b.de.zoete/html/tekeningen.html I have a div containing thumbnails (who ever came up with that word?) to select a larger view of a picture. The div is...
14
by: lindsey.crocker | last post by:
Hi I have a menu which is done using background graphic rollovers. Its is in a table at the moment. The problem i have is that the text does not align centre whatever i do. I can fix it...
0
by: dudethat | last post by:
Hello, im brand new to forums and as you will see to css! The problem im having here is the text i want in the cell (class hd) refuses to align to the top in firefox. Ive tried placing it straight...
1
by: Jeff | last post by:
ASP.NET 2.0 The code below doesn't vertically center the image within the div, what am I missing?? <div style="background-color:Green; width:210px; height:230px; text-align:center;...
1
by: platoon1sc | last post by:
Hi guys.I have a problem with Internet Explorer in my web-application. I have a vertical scrollbar into my jsps but firefox show the vertical srollbar, but IE doesn't. IE show a blank space where...
2
by: esteuart | last post by:
I need to get the right combination for a div to clip any text inside and allow vertical alignment. I only have this problem in FireFox. I have 3 divs nested within each other. The outer div has...
4
by: Roberto Mora | last post by:
I have not done programming in a very long time and what is worst, I never learned VB. Although my job does not require this knowledge, I cam across a problem that although it seemed simple it has...
4
n8kindt
by: n8kindt | last post by:
i have a thread posted elsewhere but it got long and messy. this is all that needs to be seen: http://i3.photobucket.com/albums/y72/n8kindt/verticalerror2-1.jpg the report looks great until i...
1
by: webdev1 | last post by:
Hi, I have set scrolling="auto" in my iframe, so when the height of iframe(Content) is more than the allocated height, vertical scrollbar appears.....Works perfect in Firefox, but when it comes...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.