marjon18us
New member
- Local time
- Tomorrow, 01:11
- Joined
- Oct 11, 2012
- Messages
- 5
Hello,
I just registered today...
I have a similar problem. this is how my table looks like:
Main Tbl
Org ID CompanyName DateofInc
1234 ABC 1/24
1233 A Com 2/5
1444 TSY 3/53
ValidityTbl
OrgID FieldIssue ValidityConsistency
1444 CompanyName Validity
1444 DateofInc Validity
I want to create a query or table that will lookup all the orgIds in the maintbl in the validity table. it will display a "fail" for a given field if it exist in the validity table and it will blank if it does not exist in validity tbl. Desired output is as follows:
Validityquery
Org ID CompanyName DateofInc
1234 [blank] [blank]
1233 [blank] [blank]
1444 Fail Fail
I have created a query but the output showing is duplicated rows for OAId. I want to display it in a single row for each org id. here is what my query displays:
Validityquery
Org ID CompanyName DateofInc
1234 [blank] [blank]
1233 [blank] [blank]
1444 Fail [blank]
1444 [blank] Fail
I would really appreciate your help. I did this in Excel but the macro was too slow (i will be getting 200 thousand data or more). I believe it is faster in Access.
This is not concatenate. The Fail must be displayed in separate fields or columns.
I just registered today...
I have a similar problem. this is how my table looks like:
Main Tbl
Org ID CompanyName DateofInc
1234 ABC 1/24
1233 A Com 2/5
1444 TSY 3/53
ValidityTbl
OrgID FieldIssue ValidityConsistency
1444 CompanyName Validity
1444 DateofInc Validity
I want to create a query or table that will lookup all the orgIds in the maintbl in the validity table. it will display a "fail" for a given field if it exist in the validity table and it will blank if it does not exist in validity tbl. Desired output is as follows:
Validityquery
Org ID CompanyName DateofInc
1234 [blank] [blank]
1233 [blank] [blank]
1444 Fail Fail
I have created a query but the output showing is duplicated rows for OAId. I want to display it in a single row for each org id. here is what my query displays:
Validityquery
Org ID CompanyName DateofInc
1234 [blank] [blank]
1233 [blank] [blank]
1444 Fail [blank]
1444 [blank] Fail
I would really appreciate your help. I did this in Excel but the macro was too slow (i will be getting 200 thousand data or more). I believe it is faster in Access.
This is not concatenate. The Fail must be displayed in separate fields or columns.