A
Andy Newbie
I have an table in Access that was imported from an Excel spreadsheet. It is
very large and contains about 75000 records. Many of these records are "null"
and the ones of interest are the text character "X". Fields containing an "X"
represent a BOOLEAN 1 (one) or TRUE condition. This "X" character needs to be
replaced throughout the table by a variable that changes frequently. Below is
an example:
ID Part# Product1 Product2 Product3 Product4
1 0001 X X
2 0002 X X X
3 0003 X X
The idea is to find the "X" associating a product with a part number and
replace the "X" with the actual part number. I would like the result to
resemble the following:
ID Part# Product1 Product2 Product3 Product4
1 0001 0001 0001
2 0002 0002 0002 0002
3 0003 0003 0003
The idea is to be able to create reports on how many products use a certain
part number. Transforming the data will enable the easy creation of queries
and reports.
very large and contains about 75000 records. Many of these records are "null"
and the ones of interest are the text character "X". Fields containing an "X"
represent a BOOLEAN 1 (one) or TRUE condition. This "X" character needs to be
replaced throughout the table by a variable that changes frequently. Below is
an example:
ID Part# Product1 Product2 Product3 Product4
1 0001 X X
2 0002 X X X
3 0003 X X
The idea is to find the "X" associating a product with a part number and
replace the "X" with the actual part number. I would like the result to
resemble the following:
ID Part# Product1 Product2 Product3 Product4
1 0001 0001 0001
2 0002 0002 0002 0002
3 0003 0003 0003
The idea is to be able to create reports on how many products use a certain
part number. Transforming the data will enable the easy creation of queries
and reports.