Forms :: Calculation Only Displays When Clicked

Jan 8, 2014

I have a form which has a few calculations on which are:

TotalPrice - =Nz([Quantity])*([UnitPrice])

Then at the bottom to calculate it all:

=IIf(Sum([Quantity]*[UnitPrice])=0,0,Sum([Quantity]*[UnitPrice]))

This has been working perfectly fine however the TotalPrice is no longer calculating the UnitPrice x Quantity and the TotalCost isnt calculating as nothing appears in the TotalPrice. However when we click the fields the data is diplayed but only on clicking, if we leave the record and go back its back to blank again.

View Replies


ADVERTISEMENT

Forms :: TBO Value According To Button Clicked

Jun 22, 2014

I have a form, with just two buttons, say "Tyre" and "Engine". These buttons open the same form, say frmCar.

What I want to do is when I click the "Tyre" button, a tbo in the frmCar to get as value "Tyre" and when I click the "Engine" button, the same tbo in the frmCar to get the value "Engine".

View 10 Replies View Related

Forms :: Form Screws Up And Only Displays One Row

Jul 3, 2013

I have a form, with a sub-form, which worked fine. but now, after I added and changed around the options in a combo box in the sub-form my main form only shows one result.

View 7 Replies View Related

Forms :: Set Focus To Text Box Once Button Is Clicked

May 28, 2014

What do I need to put into a macro attached to a command button to set the focus to a text box once the button is clicked?

View 1 Replies View Related

Forms :: Remembering If Checkbox Has Been Clicked In A Form

Jul 3, 2013

Here's the scenario:

I have a table of Clients, each of which can have zero or more Contacts. Clicking the Contacts button on the Client form opens a pop-up form that displays the Client's Contacts.

Each Client can have a default Contact, indicated by a DefaultContact checkbox on the Contact form. If the user checks this checkbox, I want to run a piece of code that checks whether any of this Client's Contacts are already set as default and, if so, warns the user before proceeding. If the user goes ahead, 'default' status is assigned to the current Contact & removed from the other.

It seems to me that the obvious place to do this is on the Contact form's BeforeUpdate event, when the record is being saved. However, it's only necessary to do this when the DefaultContact checkbox has been clicked. But there's no 'Dirty' flag for checkboxes & the only way I can think of is to set a global (within the scope of the form) variable and get the BeforeUpdate code to check it before running my 'Default Contact' code above.

View 6 Replies View Related

Forms :: Creating Records Only When ENTER Clicked?

Jun 18, 2015

I have a form that when the end user is searching for previous records it creates an erroneous record based off of the search criteria. I want it to create a record ONLY when the "Enter" button is pressed.

Is there a way to limit the form to creating records only when ENTER is clicked on?

View 14 Replies View Related

Forms :: Getting Subform To Open To A New Record When Button Is Clicked

Mar 3, 2015

I have a subform [ctrlLogDetail] on a parent form [incidentdetails] that is opened by the user when they click on a button on a navigation form. These forms are used for a variety of purposes. The problem I'm having is that the user needs to be able to select an incident number and go to the appropriate form (I accomplish this by using this code: DoCmd.OpenForm "IncidentDetails", acNormal, , "Activity_ID = " & Me.cboINum in the on click event of the button.) This works appropriately. The subform is also appropriately linked to the parent form.

I need an additional line of code to have the subform go to a new record when the form opens to an existing incident number. Since I use this form/subform when doing different tasks, having the Docmd.RunCommand acCmdRecordsGoToNew in the Form on open event isn't optimal.

I only want the LogDetail subform to open to a new record when the user wants to add an entry, but not when they need to edit a specific entry. What is the appropriate syntax to use either in the openargs event of the openform command or elsewhere in the procedure so that the gotonew function on the subform only occurs when this button is clicked? I'm having difficulty getting access to understand that I want the subform to open to a new record but not the parent form.

View 1 Replies View Related

Forms :: Display Different Subform Depending Upon Which Control Is Clicked

Aug 21, 2014

I am creating a database to manage multiple mobile devices. The table structure is complete and I'm trying to build a set of forms.

Simplifying things, I have tblUser, tblSim and tblDevice. I also have a tblJoin where you can select a UserID, SimID and DeviceID to create an item of inventory.

I have created a parent form (frmCreateInventory) base on tblJoin, so it has JoinID and combo boxes for UserID, SimID and DeviceID in the lefthand side.

I have also set up 3 sub forms sfrmUser, sfrmDevice and sfrmSim, based on their respective tables, which I want to display on the right hand side of frmCreateInventory.

I'd like to be able to create a subform control in frmCreateInventory, but change the subform it displays based on what combo box is clicked, e.g. if I click the UserID control, the subform displays sfrmUser, and the relevant data based on the UserID that is linked to the JoinID. if I click the DeviceID control, the sfrmDevice is displayed and the relevant info etc. etc.

Is this possible? if so, how would I go about doing this?

View 6 Replies View Related

Forms :: Combo Box To Show Report Of Selected Name When Clicked

Jun 7, 2013

Any way, I have created a table "accountstbl" to which i have AccountsID, Accountnumber, Accountname, Accountaddress, Accountcontact fields.

My question is i created a form with a combo box linking it to the accountstbl and Accountname field. When i click on the combo box it lists all my Accountnames from the accountstbl which i want but i want to click on an account name and once selected it will show a report of the selected name.

Reading through lengthy pages there is reference to event procedures but this is code which i do not know.

Simples is me select name from combo box and voila you have a report of your selected account name.

View 6 Replies View Related

Forms :: Check Box Control - Unable To Uncheck When Clicked

May 30, 2013

In a current form I want to display a checkbox that can be checked or unchecked. Based on if the box is checked or not, a value will be placed in a field when the record gets updated or created...

I have created a check box but when I click it, I am unable to uncheck it, Im pretty confident I can do the later part in coding it into the database... its just having the free ability to check it or not!

View 8 Replies View Related

Forms :: Image On Form Displays Differently In Terminal Server Desktop?

Jun 6, 2013

why access 2007 is displaying an image oddly on a 2003/2008 terminal server farm. I am reasonably sure the problem is an access on terminal server issue because if you view the image in paint, image viewer, or word it displays fine on the terminal server. I don't think it is a resolution or color issue because once again it displays fine in paint, etc regardless of color depth.

The image below shows the difference in the png graphic. The image is transparent (the blue section being the background)

[URL]

As you can see the terminal server image is pixelated.

The form the image is sitting on has a blue gradiant that goes light to dark left to right. The form properties are below

[URL]

The image properties are below:

[URL]

View 2 Replies View Related

Forms :: Form That Adds Data To A Table Depending On Which Option Was Clicked In Combo Box?

Sep 30, 2013

i have a standard database with tblProducts, order, employees, customers, suppliers etc. i also have a table called tblperson with personID which acts as a one, with the many in three different tables (customers, suppliers and employee) the person table holds data such as first name last name address city postcode and phone. now, ive created a form called frmPerson that acts as a adding data to my database. ive got a load of buttons a working add, delete and a save button, i also have the option to switch through records next, last, end and first. now basically in this form i want to be able to add data i.e. fill out the text boxes and then have a combo box or something similiar that when i add the data i can basically click an option the says 'employee' 'supplier' or 'customer' and then the data gets added to my person table however the difference is that it will also be associated to the record in the wanted table.

View 14 Replies View Related

Forms :: When Clicked Form Opens To Blank Record And Won't Show Previous Records

May 6, 2015

I've recently decided to move a database that had all its information on 1 table and divided it into multiple tables.

Attached is the relationship as well as the form.

The issue I have is that when I click the form, it only shows a blank record with none of previous records.

Data entry is already set to NO. I'm wondering if it's an issue with my relationships, tblStudioDescription is the parent table and the others are child tables so I linked them with the ID and set referential integrity.

View 7 Replies View Related

Forms :: One To Many Table Calculation

Apr 30, 2015

I'm currently using a Dlookup function to display a calculated field from a query. This works fine when only one record is entered on the many side; however when additional records are entered it doesn't add the additional records. What function/code can I use to add each record's total as it's entered on the many side?

This is what is working when the many side only has one record:

=(DLookUp("[qryTotalBalance]![NetBalance]","[qryTotalBalance]","[CustID]= " & Nz([CustID],0)))

View 14 Replies View Related

Forms :: Not Get A Calculation To Display

Dec 5, 2014

I have a field called PriceSoldFor and I need to calculate and display this field multiplied by 3.4%. This is what I have tried and reading elsewhere it should work:In the Control Source of an unbound TextBox I have entered the following:

=[PriceSoldFor]*[.034]

Ads: Technewonline is a website that specializes in introducing the latest technologies such as Best Tablet Android Have Price Under $200 and Best tablet of Apple in 2014 and The Best Midrange Smart Phone In 2014 and Top Best Ultrabook Of 2014 and The Best Phones 4G Valued At Under 300 USD is also a website for sharing your tips about computers, mobile phones and tablets, products are available from leading supermarkets will surely satisfy you.

But when I view the form the field displays the following:

#Name?

View 1 Replies View Related

Message Box That Stays After You've Clicked Yes

Mar 12, 2006

I've got this yes/no message box that deletes an appointment. When i click yes to confirm delete, the box just stays there. I have to click yes again before it works. Clicking no works fine. Its like its going round the else if statement for vbYes twice. Does anyone know why this is happening? Heres a snippet of the related code. Thanks in advance.

If myYesNoQuestion(strDelete) = vbNo Then
myDisplayInfoMessage "Appointment kept on file"
'If the user decides not to delete the customer then appointment kept
Calendar3.SetFocus
'Sets the focus away to allow the rooms to be disabled
lstRoom1.Enabled = False
lstRoom2.Enabled = False
lstRoom3.Enabled = False
lstRoom4.Enabled = False
'Disables the rooms again

ElseIf myYesNoQuestion(strDelete) = vbYes Then
strSQL = "DELETE * FROM tblAppointment where [AppointmentID]= " & .Column(2)
'SQL to delete appointment from table
DoCmd.SetWarnings False
DoCmd.RunSQL strSQL
DoCmd.SetWarnings True
'Turn warning off, run SQL, turn them back on again

myDisplayInfoMessage "Appointment Deleted OK"
'If the user decides to delete the customer then record is deleted and a message is shown to prove that
Calendar3.SetFocus
'Sets the focus away to allow the rooms to be disabled
lstRoom1.Enabled = False
lstRoom2.Enabled = False
lstRoom3.Enabled = False
lstRoom4.Enabled = False
'Disables the rooms again

End If

End If

View 5 Replies View Related

Forms :: Calculation With A Blank Field?

May 11, 2014

I would Like to save the data to our Table

[InvoiceTotal] - [InvoicePersonal] "if Invoice Personal contains a value" = [InvoiceShareLoan]

If "InvoicePersonal" does not contain a value, no calculation will be made

View 2 Replies View Related

Forms :: Form Combo Box Calculation

May 30, 2013

I have a combo box on a form that is liked to a table (current). That table has a list of available items and a count at the end of it. For example, apples, bananas, strawberries, blueberries, 4. Is it possible to have the combo box on the form subtract 1 from the count when an item is selected from the list? So when apple is selected the count of 4 is changed to 3.

View 4 Replies View Related

Forms :: Invoice Sub Total Calculation

Aug 10, 2014

Is this possible? In my invoice form I have 3 different tax rates. I have put a calculation in each of the Control Sources to calculate the invoice sub total:

=[Invoice Sub Total]*0.13 =[Invoice Sub Total]*0.05 =[Invoice Sub Total]*0.09975

I don't always use all the tax rates. I would like to be able to go back into a tax rate field I don't need and delete it.

View 11 Replies View Related

Forms :: Number Of Days Calculation

Dec 9, 2013

i have a form where I enter two dates i.e. a commence day and a final day and I also have a save button.I would either

a. have a control on the save button which pops up a message if the final day is greater than the commence day and so preventing the save record

b. Or if the final day is entered and is recognised as a date before the commence day then to pop a message saying so and preventing the save record.

View 6 Replies View Related

Forms :: Calculation Using Combobox Output

Jun 26, 2015

What code can I use to multiply the quantity field by the cost field on a form, when the cost field is the output of a combobox.

View 14 Replies View Related

Forms :: Calculation To A Specific Category

Mar 8, 2013

I have a form with the following:

A combo textbox with Category A and Category B.

An Amount textbox.

In the form footer, I have a textbox calculating the sum of the Amount.

This works fine but how do I create a textbox that calculates just the Category A or Category B??

View 2 Replies View Related

Forms :: Cannot Get Calculation To Display On A Form

Nov 12, 2014

I have a field called PriceSoldFor and I need to calculate and display this field multiplied by 3.4%. This is what I have tried and reading elsewhere it should work.In the Control Source of an unbound TextBox I have entered the following:

=[PriceSoldFor]*[.034]

But when I view the form the field displays the following:

#Name?

View 2 Replies View Related

Forms :: Tax Calculation Cannot Be Inserted In Database

Oct 17, 2014

I have created a From with some Fields: Name, Surname, Netto Price, Tax (%) and Gross Price..... to make a invoice.

The Problem is that i cant insert the data from: Tax and Gross Price in to the DB.I have tried this:

select Tax Field--> Property Sheet -> Control Source: =[Price]*0,19

example:
Netto Price: 100
Tax 19%-- =[Price]*0,19 = 19

Now I get the correct values ​​displayed in Field Taxes.But this this sum cant not insert in to the Database.I use MS Office 2013.

View 9 Replies View Related

How To Build Sliding Bar Displays?

Jan 8, 2007

Hello All

Does anyone know how you might build sliding bar displays as an input device for scores into an Access database? I am building an application that could really use something like this.

Here is an example. First go to the 'Chelsea tab', slide the bars, submit the results, and see the results on the "Results" tab

http://news.bbc.co.uk/sport1/hi/football/teams/c/chelsea/6173703.stm

Very impressive

NoVoice

View 6 Replies View Related

Record Displays In Row When There Is No Data?

Mar 18, 2005

I have a form that contains 4 sub-forms. In two of the Sub-Forms "Users" and "Computers" the form displays the PK on the second row when there is NO Data? (See attached).

Does anybody know how I can stop this from displaying?

Many Thanks,
Phil.

View 5 Replies View Related







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