solsearcher
Registered User.
- Local time
- Today, 11:16
- Joined
- Oct 19, 2012
- Messages
- 10
Hi Forum, I'm a newbie to Access and have been thrown in at the deep end to gather information from multiple tables and export that data into excel. If I could have some help to solve this first problem I think the rest will be straight forward. Fingers crossed.
First problem then.....
I am trying to collate data from the same table based on two queries. here is the SQL:
SELECT UserDefinedProperties.nVariableID, UserDefinedProperties.sValue, UserDefinedProperties.sContentID
FROM UserDefinedProperties
WHERE (((UserDefinedProperties.nVariableID)=65887))
UNION
SELECT UserDefinedProperties.nVariableID, UserDefinedProperties.sValue, UserDefinedProperties.sContentID
FROM UserDefinedProperties
WHERE (((UserDefinedProperties.nVariableID)=65877));
The results are what I wanted but listed. I really need the second query results in a new column.
Is this possible with Access?
First problem then.....
I am trying to collate data from the same table based on two queries. here is the SQL:
SELECT UserDefinedProperties.nVariableID, UserDefinedProperties.sValue, UserDefinedProperties.sContentID
FROM UserDefinedProperties
WHERE (((UserDefinedProperties.nVariableID)=65887))
UNION
SELECT UserDefinedProperties.nVariableID, UserDefinedProperties.sValue, UserDefinedProperties.sContentID
FROM UserDefinedProperties
WHERE (((UserDefinedProperties.nVariableID)=65877));
The results are what I wanted but listed. I really need the second query results in a new column.
Is this possible with Access?