I have an Append Query that is bringing in info from an Excel spreadsheet.
It is measurement information, and of the 473 rows, only 75 may actually contain information.
So I am importing the spreadsheet to a table, and now want to Append only those records that have measurement information in them.
The problem is the left hand column contains the name/ identifier for each row, even if there is no measure information.
Also, the measure info can be in any one of the 15 fields, and I need a row with any information.
The only solution I know of is to us "Is Not Null ... OR ... "Is Not Null ..." for each field, which seems excessive.
I just want to look through Field4 - Field26 and only return the rows where there is information.
Any ideas? thanks. Sean. (sample data below)
I need the first three rows appended, but not the '7855' row.
It is measurement information, and of the 473 rows, only 75 may actually contain information.
So I am importing the spreadsheet to a table, and now want to Append only those records that have measurement information in them.
The problem is the left hand column contains the name/ identifier for each row, even if there is no measure information.
Also, the measure info can be in any one of the 15 fields, and I need a row with any information.
The only solution I know of is to us "Is Not Null ... OR ... "Is Not Null ..." for each field, which seems excessive.
I just want to look through Field4 - Field26 and only return the rows where there is information.
Any ideas? thanks. Sean. (sample data below)
Code:
IDField Field4 Field5 Field6
8677 1
6557 2 $4.00 $8.00
4322 1 $3.33
7855
I need the first three rows appended, but not the '7855' row.