My Query looks like
PARAMETERS LSD Value, [SECTION] Value, TOWNSHIP Value, RANGE Value, MERIDIAN Value;
SELECT [located in].Lsd, [located in].Section, [located in].Township, [located in].Range, [located in].Meridian, [located in].Job
FROM [located in]
WHERE ((([located in].Lsd)=[LSD]) AND (([located in].Section)=[SECTION]) AND (([located in].Township)=[TOWNSHIP]) AND (([located in].Range)=[RANGE]) AND (([located in].Meridian)=[MERIDIAN])) OR ((([located in].Lsd) Is Null) AND (([located in].Section) Is Null) AND (([located in].Township) Is Null) AND (([located in].Range) Is Null) AND (([located in].Meridian) Is Null));
But if I do not type anyting in the parameters field I get no records. I think its because
"If the type of join you're using retrieves only matching records from the two joined tables, any records in which the joined field contains a Null value won't be included in the query's results. You can use the Nz function to convert Null values to a zero, zero-length string, or other specified value so that those records are included in the query's results. "
How do I use this function
PARAMETERS LSD Value, [SECTION] Value, TOWNSHIP Value, RANGE Value, MERIDIAN Value;
SELECT [located in].Lsd, [located in].Section, [located in].Township, [located in].Range, [located in].Meridian, [located in].Job
FROM [located in]
WHERE ((([located in].Lsd)=[LSD]) AND (([located in].Section)=[SECTION]) AND (([located in].Township)=[TOWNSHIP]) AND (([located in].Range)=[RANGE]) AND (([located in].Meridian)=[MERIDIAN])) OR ((([located in].Lsd) Is Null) AND (([located in].Section) Is Null) AND (([located in].Township) Is Null) AND (([located in].Range) Is Null) AND (([located in].Meridian) Is Null));
But if I do not type anyting in the parameters field I get no records. I think its because
"If the type of join you're using retrieves only matching records from the two joined tables, any records in which the joined field contains a Null value won't be included in the query's results. You can use the Nz function to convert Null values to a zero, zero-length string, or other specified value so that those records are included in the query's results. "
How do I use this function