praveen_khm
Registered User.
- Local time
- Today, 04:54
- Joined
- Feb 1, 2006
- Messages
- 17
Hi all,
Here is a small question. Maybe easier, but as am a newbie, not able to find out. I have the below query which pulls the information. There is a "where" condition which works perfectly when I input any data like "WHERE ((([Proposal Table].[EBS Project ID]))) = "2435". However, I do not want it to take a default value. When the user runs the query, it should pop up a box asking for the Project ID. Please let me know how to get an input box here.
Thanks,
Praveen
Here is a small question. Maybe easier, but as am a newbie, not able to find out. I have the below query which pulls the information. There is a "where" condition which works perfectly when I input any data like "WHERE ((([Proposal Table].[EBS Project ID]))) = "2435". However, I do not want it to take a default value. When the user runs the query, it should pop up a box asking for the Project ID. Please let me know how to get an input box here.
Code:
TRANSFORM Sum([Proposal Resource].Mandays) AS SumOfMandays
SELECT [Proposal Table].[EBS Project ID], [Proposal Resource].[Onsite / Offshore], [Proposal Resource].[Planned / Actual]
FROM ([Proposal Actual_Planned_Crstb] INNER JOIN [Proposal Table] ON [Proposal Actual_Planned_Crstb].[Proposal Number] = [Proposal Table].[Proposal Number]) INNER JOIN [Proposal Resource] ON [Proposal Table].[Proposal Number] = [Proposal Resource].[Proposal Number]
WHERE ((([Proposal Table].[EBS Project ID])))
GROUP BY [Proposal Table].[EBS Project ID], [Proposal Resource].[Onsite / Offshore], [Proposal Resource].[Planned / Actual]
PIVOT " " & Format([Month],"mmmm");
Thanks,
Praveen