Firstly, dbf files are not spreadsheets. Thinking of them as spreadsheet cells is not helpful.
The answer to your question depends on what package/module you are using to access this file. If you are using mine it would look something like this:
import dbf
my_table = dbf.Table('/path/and/filename')
with my_table:
my_table.add_fields('header3 N(3,0)')
for record in dbf.Process(my_table):
record.header3 = record.header1 + record.header2
Firstly, dbf files are not spreadsheets. Thinking of them as spreadsheet cells is not helpful.
The answer to your question depends on what package/module you are using to access this file. If you are using mine it would look something like this: