I have a form online, that, when filled out, is sent to me in an Excel spreadsheet. The columns of the Excel Spreadsheet match up with the columns of a table in my DB. I plan to import the data from Excel into my DB, but several columns in the table on the DB have checkboxes, which correspond to a form(frmEmployee). The online form has the same checkboxes. However, the Excel spreadsheet does not. Instead, if the individual checked the box online, the spreadsheet indicates it with a "1".
Can I tell the database, when it's reading that information for import, to check the corresponding box if there's a "1" in the Spreadsheet?
Maybe something like "IIf (IsNotNull([fieldname]), yes)" or something like that?