Conditional Form Sections?

Oct 10, 2005

Hi there,

I'm trying to do a new membership database for a local group who take monetary subscriptions.
Basically, there's a form for creating a new member, with a few tabs - Contact Info, Payment Info, and one other.

Basically, in the payment tab, i've got a dropo down box to select the individual package from a packages table, another to select the payment term (Monthly, Annually), and a final one to select the payment method.
Now in there i've got a list of possible payment methods: Cash, Cheque, Credit/Debit Card, Direct Debit.
Now obviouslly, each payment method is going to have different requirememnts for what info the club actually needs. Cash simply needs amount of payment and date of payment. Cheque needs payment amount, payment date, cheque details. Card is obviously going to need the CC number, Valid & Expiry Date, Card Type, CCV Number, etc.

So basically, i want to be able to have the relevant section display when that payment method is selected from the Payment Method drop-down box.
What's the easiet way of doing this? Could i create another tab-set inside the payment tab, and then only display the one tab relevant to the selected method?

Cheers
Fatmcgav

View Replies


ADVERTISEMENT

Expandable Sections In A Form

Feb 17, 2006

Request from the higher ups to have several expandable sections in a form. Ideally only the title of the section would show, like when using a DAP, then the user could click and expand out the section and enter data. I tried the Tab option, but they are set on an expansion section.

Any tips on how to make this happen?

View 2 Replies View Related

Forms :: How To Add More Sections To Form

Jul 28, 2014

Any way I can add more sections to my form? For example right now I have a section named "Header", "Detail" and "Footer". Can I add my own?

View 3 Replies View Related

Move Controls Between Sections On A Form

Dec 19, 2004

Using Access XP

I have a continuous form that shows the main fields in my table. In the page footer of the form I have a tab control that has 4 additional fields for each record. I want to give the user the option of “Show Details”. When the user clicks on “show details” I want to move the tab control with the additional fields to the detail row so the user can see them.



I know how to move controls with VBA by setting the Top and Left properties and how to expand the detail size, but how do I move controls from one section on the form to another section on the form i.e. from the page footer to the detail section

View 1 Replies View Related

Forms :: Highlight Sections Of Continuous Form?

Feb 9, 2015

I have a continuous form that shows the results from a query like:

Red
Red
Red
Green
Green
Green
Yellow
Yellow

And I wanted to know if I can some how highlight in a white/yellow alternating color like for instance starting with the three reds being white then the three greens being yellow then the two yellows being white and so on. Maybe through conditional format?

View 2 Replies View Related

Form With Three Sections To Show Side By Side

Jan 26, 2012

Form with three sections. I have three queries selecting different set of set in a table, I would like to show all three in a form side by side. How can I do this? I use form wizard bit it only uses one query as a source.

View 2 Replies View Related

Collapsible Sections

Dec 2, 2004

I have a switchboard form with a left menu bar similar to windows explore wi
th three sections (Configure, Tasks, Print)
How can I have each section collapsible like in window explore?

Can it be done through the VBA scripting in MS Access? If so can someone pro
vided examples?

Basically I divided each section to three parts
one part is the header which is an image and a label (name of section)
the second part is the button to click to hide/show the context of the secti
on
the third part is the text (labels that open other forms) with a background
image


something like this
http://www.viksoe.dk/code/collapsiblepanel.htm
http://www.viksoe.dk/code/screensho..psiblepanel.gif

but that will work with an MS Access form

View 8 Replies View Related

Lock The Object Sections

Nov 8, 2005

Hi

In MS Access:

Objects:
Tables
Queries
Forms
Reports
Pages
Macros
Modules

Groups:
...

I want to lock the Objects section, because I made the Groups in the groups section. How can I lock the objects section.

Please let me know, thanks a lot.

View 1 Replies View Related

Multiple Details Sections?

Jan 29, 2007

Hello,

I have not used access that much, but what I am looking to do is basically have 2 details sections within a report that will have different records in them.

I first used a subreport but that really did not work as intended. It left large gaps in between the records and just plain didnt work.

Here is a image of what I am trying to achieve:
hxxp://img379.imageshack.us/img379/9471/accesshelpnx9.gif

As you can see theres two different sections. One is for regular campaigns and one is for extended campains. There is a field in the table that has the extended date. For the compaigns that field should be blank or null and for the extended campaigns it is not blank or null.

Is there anyway to achieve this in Access 2003, if so can you tell me or describe me the steps?

Thank you!

View 1 Replies View Related

Reports :: Keep Two Sections Together On One Page

Mar 7, 2014

Is this possible? How?

View 4 Replies View Related

Tabular Forms And Detail Sections

Jul 20, 2005

I'm curious if anyone know's a way to access a specific data section on a tabular form. I'm attempting to have each section update a specific data item based on its position on the form, but am having problems since I do not know how to differentiate between one details section and another on the form. Any help would be appreciated.

Thanks

View 4 Replies View Related

Reports :: Emailing From Report Sections?

Aug 30, 2013

I have many reports that are structured differently, many are grouped by semester.

What I do now, is put a button on each grouping of the report I want to email from and use the current semester (Sem) which is also a query parameter to filter the report.

Here is my current code which works fine:

Sub EmailFromReport(rpt As Report, Optional Sem As Variant)
Dim db As Database
Dim qry As QueryDef
Dim rs As Recordset
Dim Bcc As String
Dim Subject As String
Set db = CurrentDb
Set qry = CurrentDb.QueryDefs(rpt.RecordSource)
'set query parameters

[code]....

The problem is, I need to be able to filter these queries on other criteria besides the semester.

My first idea was to use if statements to skip the records I don't want. This is messy and the report structures are different so I run into issues when using optional parameters because not all the reports are structured the same.

The best solution I have come up with so far is using a wherefilter parameter, stripping the semi colon off the querydef sql and surrounding the sql with a qrydef.SQL = "SELECT Email1, Email2 FROM (" qrydef.SQL ") WHERE " & wherefilter.

The problem is this, changes the original query, and I can't figure out how to copy a query with db.CreateQueryDef If i do db.CreateQueryDef("tempqry",qrydefSQL), I lose the query parameters.

Is there a better way to do this? If this is the best way, how do you take an existing query and make a copy of it?

View 2 Replies View Related

How To Use Sections Of One Table In Multiple Tables

Dec 1, 2013

I have quite a limited knowledge of MS Access (2007).

My question is; How do you use sections of one table in other tables?

For example: In tbl_One I input a users Name and Age and then say Weight, Height, BMI, etc.

Then in tbl_Two it uses the same Name and Age in tbl_1 but has other information such as Job, Skills etc.

This is not my actual database, however this analogy works, and they must be in separate tables, even though above they could all just be in a single table.

View 1 Replies View Related

Grouping Data Into Sections From A Field?

Oct 10, 2014

I have a database with a list of clients. One field is for their date of birth.

I have to report on equality and need to know how many clients we have within the following age groups:

16 - 24
25 - 34

35 - 44
45 - 54
55 - 64
65+

I have looked through the group and sort functions and cannot see anything obvious.

View 2 Replies View Related

Help Creating Report With Multiple Detail Sections

Mar 27, 2008

Hi,

I need to create a report for each employee in my company of all compensation information. The report is going to need to have multiple detail sections on the report for example to list all benefits specific to the employee and all beneficiaries.

I tried using a subreport to produce those detail sections that I needed but once I placed this subreport inside a box on the main report each detail I created increased the size of the box. I also thought about making the detail section a list box and writing all of the information there. Would there be a better or easy way to accomplish this?

I am also thinking I am going to have to save all of this information in a table and based the report on that table?

Any help would be greatly appreciated.

Thanks,

tones

View 12 Replies View Related

General :: Add Result From Different Sections Into One Combined Stock?

Feb 3, 2013

i have a production database application in which there are many sections. every section's product stock is generated by running a complex query.

now when i want to add the result from different sections into a one combined stock , i could not design the query as it become too large and on running it produces the error "cannot open anymore database".

i think reason might be too many queries executing at same time .

so do i need to create a table from the stock queries of each section? and then add the tables to generate the combined stock query ?

View 3 Replies View Related

Modules & VBA :: Create Multiple Expanding / Collapsing Sections

Mar 25, 2015

I found a post where it shows how to create a single collapsable/expandable section. I am needing to do this for 10 sections with a lot of information in between each section. The coding that this post provides does not seem doable for that many sections. How to create a collapsable/expandable subform?

View 1 Replies View Related

General :: Access 2003 Report - Purpose Of Having Sections?

Feb 10, 2015

I am redesigning an invoice format with access 2003 report.While coding in Microsoft Visual Basic, I realized that there are two drop down menus.

The right drop down menu has the sections as below:

Detail
GroupFooter1
GroupFooter2
GroupHeader1
GroupHeader0
PageFooterSection
PageHeaderSection
Report
ReportFooter
ReportHeader

The left drop down menu has options below.

Format
Print
Retreat

May I know where can I read up the purpose and use of different sections in the right drop down menu, especially "Report" section?

Are these sections in-build in Access 2003 or created by user?

View 1 Replies View Related

Conditional Sum In Form

Sep 26, 2006

Hi all

I want to display income and expense seperately on the form till the time of last transaction--in cash book,where i will enter transactions.

Issue:

How do i display total of income and expense seperately on form using conditional sum on date,income/expense , or any other way to do it

View 2 Replies View Related

Conditional Locking Of Form Field

Feb 17, 2005

I am developing a simple database in Access 97, where users have to enter values manually into a form. There is one field called product. Depending on that entry, either field language or country would have to be blocked to avoid invalid entries.
Do you have any ideas on how to approach that problem?

View 2 Replies View Related

Conditional Format - Form Background

Mar 24, 2006

Could some kind person out there help me out please?
I have been 'dabbling in' the area of "conditional formatting", particularly in the area of changing the colour of my active form based on the result of whats input on a text box. I have had some success in this area but where I am getting confused is getting the colour of my form to change on the basis of what is entered into a text box control that does not match exactly. My form background changes to the required colour when its value is 'set exactly' or matches, but what I am trying to achieve is to change it according to the first letter of entry regardless of what follows thereafter? It always starts with a letter, either a ‘D’ or ‘V’ to indicate whether its ‘Vital’ or ‘Desirable’ and is subsequently followed by no more than 6 numbers and finally a letter. Basically I need my form to change colour based on the whether it is either a ‘V’ or a ‘D’ irrespective of what follows???

What I have been using so far is:

Private Sub Model_Number_AfterUpdate()
If Me.Part_Number = "V111145K" Then
Me.Section(acDetail).BackColor = 12632256 'Light Red
Else
Me.Section(acDetail).BackColor = 8421631 'Blah Gray
End If
End Sub

.................................................. .................................................

Private Sub Form_Current()
If Me.Part_Number = "V111145K" Then
Me.Section(acDetail).BackColor = 12632256 'Light Red
Else
Me.Section(acDetail).BackColor = 8421631 'Blah Gray
End If
End Sub


Your help would be gratefully appreciated:confused:

Thanks Very Much


Carol

View 1 Replies View Related

Conditional Formating On Continous Form

Sep 24, 2004

Help

I am trying to change the color to display when the order
close to red.whilst leaving the open records as default.
Iam attempting this on a continous form.
Currently operating access 2000

Many thanks

desperate

View 1 Replies View Related

Forms :: Conditional Lamp In A Form

Aug 28, 2013

I want to make a toolbar on top of my form and put the input label and a lamp behind it, in that,so when the operator enter a specific input a lamp near the input label in toolbar become green and when the operator not enter a value this lamp show red color.

View 1 Replies View Related

Conditional Formatting Of One Button On Continuous Form

Jul 17, 2005

Hello there,

I was wondering if any of you experts out there know a way to help me out here.
I was wondering if it is possible to color the text on the last pressed button on a continuous form different from all the others, so people will know which one they pressed last?
I've been trying a lot of different things here but i'm stuck. All i can get done is that all the buttons turn a different color, but doesn't solve anything.

I hope some of u can help me out here.

Greetz,
And thanx in advance,
Rutger

View 7 Replies View Related

General :: Fields On Form - IF Then Conditional Format

Jan 14, 2014

I have a field on a form OrderDate and a field DOB. I am not sure how to create an expression in conditional formatting that:

=IF([DOB] - [OrderDate] <30), Then background is red

So if the OrderDate is 1/1/2014 and the DOB is 1/15/2014 then the DOB field turns red

If the OrderDate is 1/1/2014 and the DOB is 2/29/2012 then the DOB field does not turn red.

View 8 Replies View Related

Forms :: Displaying Conditional Info On A Form

Oct 15, 2013

I am trying to create a form where I store the literacy and numeracy results of a group of students. So far I have designed a form which gives me a tick box as to whether the test they took was literacy or numeracy, then a box where I enter the score. Literacy tests are scored out of 72 and numeracy out of 50.

what I would like to do is write something that shows the literacy numeracy levels of each student after each test. So for literacy, the score ranges are as follows:

0 - 13 Below Entry 1
14 - 32 Entry 1
33 - 52 Entry 2
53 - 65 Entry 3
66 - 7 Level 1

What I would like to be able to do is tick whether or not they sat a literacy or numeracy test, enter the score and the db to come up with their level and display it on the form.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved