I will be building a questionnaire whose data will be stored in SQL Server.
Regarding Yes/No questions, last year in a similar project, I stored them as bit fields.
When I linked the table to an Access database for reporting and analysis purposes, the questions that
were not answered (NULL in SQL Server) came across as No in access. In access queries, if I
had a column ...IIf(Column = -1,"Yes","No") that worked fine, but how would I get the ones that
were NULL. In Access, they don't look NULL in the table.
Regarding Yes/No questions, last year in a similar project, I stored them as bit fields.
When I linked the table to an Access database for reporting and analysis purposes, the questions that
were not answered (NULL in SQL Server) came across as No in access. In access queries, if I
had a column ...IIf(Column = -1,"Yes","No") that worked fine, but how would I get the ones that
were NULL. In Access, they don't look NULL in the table.