Nov 14, 2003 #1 smurf01 IS-IT--Management Joined Jul 6, 2002 Messages 470 Location GB Is it possible to create data in another table field from data in other table fields i.e. FieldC If([fieldA]= "YES",1,0) I've probably not explained myself too well but any help would be appreciated Regards Paul
Is it possible to create data in another table field from data in other table fields i.e. FieldC If([fieldA]= "YES",1,0) I've probably not explained myself too well but any help would be appreciated Regards Paul
Nov 14, 2003 #2 Golom Programmer Joined Sep 1, 2003 Messages 5,595 Location CA Select ..., IIF([FieldA]="YES",1,0) As [FieldC], ... Upvote 0 Downvote
Nov 14, 2003 Thread starter #3 smurf01 IS-IT--Management Joined Jul 6, 2002 Messages 470 Location GB Golom, this may seem like a stupid question but where would i put this code Regards Paul Upvote 0 Downvote