bustersports
Programmer
I am trying to import a spreadsheet with the following data types.
# Carrier Remit Zip Bill To Number
1 FedX 60693 968516528
2 FedX
3 FedX 60693
Each spreadsheet will have 49 fields, can be as few as one or as many as several thousand line items.
I need to compare the imported spreadsheet against field requirements. No one carrier has the same requirements for each field.
Item FedX UPS Yellow DGF DHL UVL
CARRIER Is Not Null Is Not Null Is Not Null Is Not Null Is Not Null Is Not Null
REMITZIP Is Not Null Is Null Is Not Null Is Null Is Null Is Not Null
Bill To Is Not Null Is Not Null Is Not Null Is Not Null Is Not Null Is Not Null
So, in the FedEx sample data, I would need to verify the following:
1. Carrier is not blank
2. Bill to number is not blank
If any error, error message is written to record. In my example, error messages would read as follows.
Record 2 - Error - remit zip required. Error - bill to number required.
Record 3 - Error - bill to number required
In summary, I would import the data, have checks run to verify data accuracy, if errors found, error message
Hopefully this is enough information.
Thank you.
# Carrier Remit Zip Bill To Number
1 FedX 60693 968516528
2 FedX
3 FedX 60693
Each spreadsheet will have 49 fields, can be as few as one or as many as several thousand line items.
I need to compare the imported spreadsheet against field requirements. No one carrier has the same requirements for each field.
Item FedX UPS Yellow DGF DHL UVL
CARRIER Is Not Null Is Not Null Is Not Null Is Not Null Is Not Null Is Not Null
REMITZIP Is Not Null Is Null Is Not Null Is Null Is Null Is Not Null
Bill To Is Not Null Is Not Null Is Not Null Is Not Null Is Not Null Is Not Null
So, in the FedEx sample data, I would need to verify the following:
1. Carrier is not blank
2. Bill to number is not blank
If any error, error message is written to record. In my example, error messages would read as follows.
Record 2 - Error - remit zip required. Error - bill to number required.
Record 3 - Error - bill to number required
In summary, I would import the data, have checks run to verify data accuracy, if errors found, error message
Hopefully this is enough information.
Thank you.