Q
Question Boy
I am trying to execute the following Sql through VBA and the first 2 fields
are always cut off. They are both pulled from the same table field which is
a memo field. I tried switching from Group By To First, but no change, still
cut off.
SELECT
IIf(InStr([303-01_ACTIONS_LOG],"&&")=0,[303-01_ACTIONS_LOG],Trim(Left([303-01_ACTIONS_LOG],InStr([303-01_ACTIONS_LOG],"&&")-1)))
AS Description,
IIf(InStr([303-01_ACTIONS_LOG],"&&")=0,"N/A",Trim(Right([303-01_ACTIONS_LOG],Len([303-01_ACTIONS_LOG])-InStr([303-01_ACTIONS_LOG],"&&")-1)))
AS Reponse, [905-COMMUNICATION ACTIONS].[303-03_RESPONSABLE_LOG] AS
Responsable, [905-COMMUNICATION ACTIONS].[303-04_DATE DUE_LOG] AS [Date]
FROM [905-COMMUNICATION ACTIONS]
WHERE ((([905-COMMUNICATION ACTIONS].Minutes)=True) AND (([905-COMMUNICATION
ACTIONS].[900-01_Numéro de Projet])='07E047'))
ORDER BY [905-COMMUNICATION ACTIONS].[303-04_DATE DUE_LOG] DESC;
How can I return the complete values for the 1st 2 columns?
Qb
are always cut off. They are both pulled from the same table field which is
a memo field. I tried switching from Group By To First, but no change, still
cut off.
SELECT
IIf(InStr([303-01_ACTIONS_LOG],"&&")=0,[303-01_ACTIONS_LOG],Trim(Left([303-01_ACTIONS_LOG],InStr([303-01_ACTIONS_LOG],"&&")-1)))
AS Description,
IIf(InStr([303-01_ACTIONS_LOG],"&&")=0,"N/A",Trim(Right([303-01_ACTIONS_LOG],Len([303-01_ACTIONS_LOG])-InStr([303-01_ACTIONS_LOG],"&&")-1)))
AS Reponse, [905-COMMUNICATION ACTIONS].[303-03_RESPONSABLE_LOG] AS
Responsable, [905-COMMUNICATION ACTIONS].[303-04_DATE DUE_LOG] AS [Date]
FROM [905-COMMUNICATION ACTIONS]
WHERE ((([905-COMMUNICATION ACTIONS].Minutes)=True) AND (([905-COMMUNICATION
ACTIONS].[900-01_Numéro de Projet])='07E047'))
ORDER BY [905-COMMUNICATION ACTIONS].[303-04_DATE DUE_LOG] DESC;
How can I return the complete values for the 1st 2 columns?
Qb