Lookup fields do not always have a RowSource.
In mod_Analyzer_110_LookupFields, this statement needs to change to keep the Analyzer from crashing.
!theSQL = fldAnalyze.Properties("RowSource")
perhaps use:
```
If IsPropertyDefined("RowSource", fldAnalyze) Then !theSQL = fldAnalyze.Properties("RowSource")
```
In mod_Analyzer_110_LookupFields, this statement needs to change to keep the Analyzer from crashing.
!theSQL = fldAnalyze.Properties("RowSource")
perhaps use:
```
If IsPropertyDefined("RowSource", fldAnalyze) Then !theSQL = fldAnalyze.Properties("RowSource")
```