Fill Field in same value

H

Hamoud Alrashid

Hi, there
I want to put "A" ltr in a filed in all records.
Please help
Have a great time
 
D

Duane Hookom

If I understand correctly, to place the letter "A" in a field in all records
in a table, create an update query with sql like:

UPDATE tblNoNameGiven
SET [FieldNoNameGive]="A";
 
H

Hamoud Alrashid

Thanks for replay
I have blank filed with name CRSn and I want replace A letter with blank.
Please help me

Duane Hookom said:
If I understand correctly, to place the letter "A" in a field in all records
in a table, create an update query with sql like:

UPDATE tblNoNameGiven
SET [FieldNoNameGive]="A";


--
Duane Hookom
MS Access MVP

Hamoud Alrashid said:
Hi, there
I want to put "A" ltr in a filed in all records.
Please help
Have a great time
 
D

Duane Hookom

This is a bit like hitting a moving target. How about your tell us your
table name, your field name, and the value you want to put into the field.
Also let us know if all records get the new value or if there is some kind
of criteria.

--
Duane Hookom
MS Access MVP

Hamoud Alrashid said:
Thanks for replay
I have blank filed with name CRSn and I want replace A letter with blank.
Please help me

Duane Hookom said:
If I understand correctly, to place the letter "A" in a field in all
records
in a table, create an update query with sql like:

UPDATE tblNoNameGiven
SET [FieldNoNameGive]="A";


--
Duane Hookom
MS Access MVP

Hamoud Alrashid said:
Hi, there
I want to put "A" ltr in a filed in all records.
Please help
Have a great time
 
Top