Setting Default Value for New Record

Weekleyba

Registered User.
Local time
Today, 06:16
Joined
Oct 10, 2013
Messages
586
I’ve been batting this around this morning and can’t seem to find the answer.
I have a form that gets updated periodically with Funding updates.

The Current Yr Allowance only changes once every Fiscal Year so, I want this field to default to the latest FY value for each Location. I had used a combobox to select the value but, I’m trying to eliminate that extra step and just have the program automatically put the latest value in.

I tried using DLookUp in the Default Value but, it’s not working.
Attached is part of the database that deals with this.
Any help would be appreciated!
 

Attachments

you can set the text box default value in the property.
or
you can have a table of defaults for various codes,then when you call up the new record form,
run an update query on that record to set the defaults.
or
open a data entry form, then set the default textboxs using code:
Code:
docmd.openform "myDataForm"
forms!myDataForm!txtBox1 = 99
forms!myDataForm!txtBox2 = Dlookup("field","table",sWhere)
 
Thanks Ranman but I'm not quite understanding.
The first method you mention is the one I'd like to use and indeed tried.
Would you mind looking at my sample database and tell me where I'm going wrong?
thanks.
 
Or you can avoid using procedures by simple having an expression as the controlsource of the text bpx
Code:
= Dlookup("field","table",sWhere)
 
The only thing I could get to work was to create a separate subform for the Current Yr Allowance textbox and link it to the parent form via LocationID.
It's a little clunky, but it works.

I could never get a DLookUp to work, in the Default Value property of the textbox.
Maybe because I was using a query? I don't know.
This was my Default Value placed in the property (not VBA)
=DLookUp("FundingAllowanceM&I","FundingAllowanceM&IQ2","LocationID = " & [Forms]![FundingF]![txtLocationID])

Still would very much like to use the Default Value to insert the value I want but, perhaps it's not possible with my database setup.

If anyone else knows how please show me.
thanks to those who responded.
 
I would place some code in the form's OnLoad event to do any manipulations of this type. I do not generally download someone else's databases so have to describe this indirectly. If the textbox is bound to the table that drives the main form, you cannot expect to change it unless the bound record contains that update.

But... if you loaded that textbox separately because it was unbound, then all you need to do is put code in the OnLoad event to make that box whatever you want it to be.
 

Users who are viewing this thread

Back
Top Bottom