how can i put together a macro/script/something automatic that will allow me to make the following changes to my database in mass:
if any cell in column 1 is X, then change the contents of column 2 (in the same row) to 0.
if the cell in column 1 is not X, then leave the contents of column 2 alone.
This is just a simple
UPDATEstatement with aWHEREclause. Run once to update all rows in your table.If you need to automatically update
column2to 0 whenevercolumn1is changed toX, create aBEFORE UPDATEtrigger.