How and where does a sql statement go in Crystal? I found out the Expression Editor is a joke - that it's not meant for actual SQL Statements(from a document on crystal's website).
Can anyone help me please? Let me know if you need more inforamtion to help me but I think it's straight forward - I want to place a field in the report that looks up the PROJECTID field that = FORID and retunr the INFLUENCEID.
Here's what should work, I think, but I don't know where to place it or if it's syntax is ok for crystal-
SELECT tblInfluence.'InfluenceID'
FROM 'tblinfluence' tblinflence,
'tblproject' tblproject
WHERE tblProject.ProjectID =
tblInfluence.ForID
Can anyone help me please? Let me know if you need more inforamtion to help me but I think it's straight forward - I want to place a field in the report that looks up the PROJECTID field that = FORID and retunr the INFLUENCEID.
Here's what should work, I think, but I don't know where to place it or if it's syntax is ok for crystal-
SELECT tblInfluence.'InfluenceID'
FROM 'tblinfluence' tblinflence,
'tblproject' tblproject
WHERE tblProject.ProjectID =
tblInfluence.ForID