473,545 Members | 1,479 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 4338
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.co m> wrote in message
news:91******** *************** ***@posting.goo gle.com...
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.supe rnews.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.co m> wrote in message
news:91******** *************** ***@posting.goo gle.com...
"DFS" <no****@nospam. com> wrote in message

news:<vu******* *****@corp.supe rnews.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.co m> wrote in message
news:91******** *************** ***@posting.goo gle.com...
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*****@localh ost.not> wrote in message news:<8J******* *********@nwrdd c02.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
9594
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 defined in the stylesheet http://home.wanadoo.nl/b.de.zoete/stylesheets/styles.css. The div is shorter than the space taken up by the total amount...
14
1463
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 with padding but this does not work in Firefox.
0
1863
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 into the first class hd cell without the table tags or tbody tags with no luck. If i add more text than there is now it pushes the link table below it...
1
1715
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; vertical-align:middle;"> <asp:Image ID="imgProfile" runat="server" Height="220px" Width="200px" /> </div>
1
5645
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 vertical scrollbat must be there. Where the FF show de scrollbar, IE show blank space, but doesn't show the scroll. My css for the scrool is: ...
2
15542
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 display of table, the first inner div has display of table-cell and the inner-most div has the text. The outer div has a set width and height. So...
4
2412
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 become a nightmare. There is a log that gets generated in a regular basis and need to put most , but not all its contents in a DB (new or...
4
2938
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 take it from report view to print preview. the numbers that are on the left hand side(which are replaced with ##### due to an error i'm trying to...
1
1782
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 to IE7, sometimes the vertical scrollbar appears when it is not necessary. I dont understand what is causing the problem. Thanks in advance..
0
7457
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7651
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7802
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7410
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7746
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5962
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5320
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
1
1869
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1010
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.