473,396 Members | 1,971 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,396 software developers and data experts.

Update field only if field is not null

My database has 2 tables: Table1 & Table2. If a field is not null on a
record in table2, then the not null fields in table1 that correspond to
the records in table1 needs to be updated to match the field in table2.

What I have is a form that is linked to Table2. If the users want to
change a field in the main database (table1), they fill the change in
to the form (which is linked to table2) If there is no change to the
field, they simply leave it blank and that particular field won't be
updated on the main database(table1). The users can change up to 30
fields listed on the form.

For example, I have a record in a Table2. Of the 30 available fields,
only 3 of them are filled in and the rest are null. So I want to be
able to update just those 3 fields in the main table (table2). This is
easy to do if it's one record. But I'm trying to automate this process
and want to be able to do this update many times for different records.
I have tried to do this using a update query that has EVERY field from
Table2 in it updating to EVERY corresponding field in Table1 based on a
criteria of some kind.

I've tried putting criteria of <>Null in the criteria of each field in
the update query. But, since there is usually one field in Table2 that
is null, none of the other fields are not null won't update.

Also, I've tried to use an IIf statment in the Field line: something
like IIf([Table2]![Field1]<>Null, [Table2]![Field1],
[Table1]![Field1]). Also, I've tried IIf(IsNull([Table2]![Field1]),
[Table2]![Field1], [Table1]![Field1]). So basically I guess my
statement above says something like, if field1 in table2 is not null,
update field1 in table1 to the value of field1 in table2, if field1 in
table2 is null, update field1 in table1 to itself. The problem here I
get is an error that says my IIf(*****) statement is not a valid name
or the text is too long.

Does all this make sense and if so do you know a way to accomplish
this? Also let me know if you need more detail.

Thanks

Jul 24 '06 #1
2 19525
I'm a bit confused. You can't update more than one record at a time,
so why not update the record on the AfterUpdate event on the form?
Store each field in a variable, and compare them to the original record
using a DLookup. Then you can use some If/Thens to update the values
if len(me.txtField1) 1.

I'm not sure if that made sense. I know what I want to say but I'm not
sure I said it right.
Brett wrote:
My database has 2 tables: Table1 & Table2. If a field is not null on a
record in table2, then the not null fields in table1 that correspond to
the records in table1 needs to be updated to match the field in table2.

What I have is a form that is linked to Table2. If the users want to
change a field in the main database (table1), they fill the change in
to the form (which is linked to table2) If there is no change to the
field, they simply leave it blank and that particular field won't be
updated on the main database(table1). The users can change up to 30
fields listed on the form.

For example, I have a record in a Table2. Of the 30 available fields,
only 3 of them are filled in and the rest are null. So I want to be
able to update just those 3 fields in the main table (table2). This is
easy to do if it's one record. But I'm trying to automate this process
and want to be able to do this update many times for different records.
I have tried to do this using a update query that has EVERY field from
Table2 in it updating to EVERY corresponding field in Table1 based on a
criteria of some kind.

I've tried putting criteria of <>Null in the criteria of each field in
the update query. But, since there is usually one field in Table2 that
is null, none of the other fields are not null won't update.

Also, I've tried to use an IIf statment in the Field line: something
like IIf([Table2]![Field1]<>Null, [Table2]![Field1],
[Table1]![Field1]). Also, I've tried IIf(IsNull([Table2]![Field1]),
[Table2]![Field1], [Table1]![Field1]). So basically I guess my
statement above says something like, if field1 in table2 is not null,
update field1 in table1 to the value of field1 in table2, if field1 in
table2 is null, update field1 in table1 to itself. The problem here I
get is an error that says my IIf(*****) statement is not a valid name
or the text is too long.

Does all this make sense and if so do you know a way to accomplish
this? Also let me know if you need more detail.

Thanks
Jul 24 '06 #2
ManningFan wrote:
I'm a bit confused. You can't update more than one record at a time,
I'm not trying to update more than one record
so why not update the record on the AfterUpdate event on the form?
Maybe I can do that.....here's some more detail:

The form I created and Table2 which holds the data from the form is
more of a "holding" area. The users inputs the data onto a form. Then
at a later date, they go back to the form, select the record they
created and they "flip a swith," by moving a drop down box from No to
Yes. When the drop down box says Yes, then I can initiate the change to
the fields. I don't really want that changing to yes to trigger
anything. I'd rather maintain the control of when the data is updated
in the main table.

Here's something more specific that I need to do or could do in a macro
or vba procedure:
Check each record (in Table2) to see if the "switch" is flipped to yes,
if yes, then I check each field in the record (in Table2 still). If the
field is null, then I go to the next field. If the field is not null,
then I change the corresponding field in Table1 to the value in table2.
Then go to the next field

Does that make sense?
Store each field in a variable, and compare them to the original record
using a DLookup. Then you can use some If/Thens to update the values
if len(me.txtField1) 1.
Based on the above detail I added would you still do what you
recommended by storing each field in a variable & such??

I was hoping to be able to do this without using vba/sql or
both.....but alas it looks like this is the thing to do..O how my
laziness is continually challenged!!!! I use vba in excel but have not
yet dove into learning vba & sql in access. I have a "beginning access
vba" by wrox publishing that I can reference and of course lots of
online documentation. But, I think I need pointed a specific direction.
I'm not sure if that made sense. I know what I want to say but I'm not
sure I said it right.
Yes that makes perfect sense
>

Brett wrote:
My database has 2 tables: Table1 & Table2. If a field is not null on a
record in table2, then the not null fields in table1 that correspond to
the records in table1 needs to be updated to match the field in table2.

What I have is a form that is linked to Table2. If the users want to
change a field in the main database (table1), they fill the change in
to the form (which is linked to table2) If there is no change to the
field, they simply leave it blank and that particular field won't be
updated on the main database(table1). The users can change up to 30
fields listed on the form.

For example, I have a record in a Table2. Of the 30 available fields,
only 3 of them are filled in and the rest are null. So I want to be
able to update just those 3 fields in the main table (table2). This is
easy to do if it's one record. But I'm trying to automate this process
and want to be able to do this update many times for different records.
I have tried to do this using a update query that has EVERY field from
Table2 in it updating to EVERY corresponding field in Table1 based on a
criteria of some kind.

I've tried putting criteria of <>Null in the criteria of each field in
the update query. But, since there is usually one field in Table2 that
is null, none of the other fields are not null won't update.

Also, I've tried to use an IIf statment in the Field line: something
like IIf([Table2]![Field1]<>Null, [Table2]![Field1],
[Table1]![Field1]). Also, I've tried IIf(IsNull([Table2]![Field1]),
[Table2]![Field1], [Table1]![Field1]). So basically I guess my
statement above says something like, if field1 in table2 is not null,
update field1 in table1 to the value of field1 in table2, if field1 in
table2 is null, update field1 in table1 to itself. The problem here I
get is an error that says my IIf(*****) statement is not a valid name
or the text is too long.

Does all this make sense and if so do you know a way to accomplish
this? Also let me know if you need more detail.

Thanks
Jul 25 '06 #3

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

Similar topics

0
by: Steven Hilton | last post by:
I am experiencing odd behavior, and I'm hoping someone can explain why it is behaving this way, and how to get around it... When I update a row in a table with a field's data set to NULL, but...
9
by: David Berman | last post by:
I'm having a problem with an update operation in a stored procedure. It runs so slowly that it is unusable, unless I comment a part out in which case it is very fast. However, I need the whole...
2
by: serge | last post by:
/* This is a long post. You can paste the whole message in the SQL Query Analyzer. I have a scenario where there are records with values pointing to wrong records and I need to fix them using an...
3
by: Ken Bush | last post by:
How can I write an update query that removes part of a field? Like if I have a field with values such as 8/3/68 (a birthday obviously) and I need to put values in a new column but I need...
3
by: Bill Clark | last post by:
I have about 20,000 records pulled from Excel that I need to update. What I need to do is run an update query that bascially says: If a field is null, update it with the previous record value of...
4
by: Reney | last post by:
I have a very weird problem in updating my datagrid. Please help me to solve it. The datagrid is tied to a dataset table with five columns. Three of them are primary key and the other two columns...
11
by: John | last post by:
Hi I had a working vs 2003 application with access backend. I added a couple fields in a table in access db and then to allow user to have access to these fields via app I did the following; ...
8
by: hotflash | last post by:
Hi CroCrew et All, I am working on a project that will allow user to search for their opened projects (means the CompleteDate is NULL) and be able to update their WorkDescription. Once the record...
4
by: justice750 | last post by:
Hi All, I am using a FormView control. The allows me to update records in the database. However, when a database field is null I can not update the field on the form. It works fine when the field...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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...

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.