Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with a query

Status
Not open for further replies.

Tronsliver

Technical User
Sep 19, 2000
120
US
I have a column in a table with many different text values. One of the values is "T0". What I want to do is go in and replace this value with just "0" for every occurence. I used this in the field window to try an accomplish.

BR_SCH_COMPL: IIf([sidstrBR_SCH_COMPL]="T0","0")

This worked fine but all other entries are now empty. That is I have a "0" for each "T0" but everything else is now gone. How can I keep the other data and still accomplish the task..

Thanks

Roger

 
Change your code to this:

BR_SCH_COMPL: IIf([sidstrBR_SCH_COMPL]="T0","0",[sidstrBR_SCH_COMPL])


That should fix it.


Joe Miller
joe.miller@flotech.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top