How to prevent Remarks from truncated (1 Viewer)

luzz

Registered User.
Local time
Today, 12:42
Joined
Aug 23, 2017
Messages
346
Hi guys, I am facing issue whereby part of my remarks are being cut off in my report even though i have change my data type to long text. How can I fix this issue?
 

Attachments

  • Remarks on database (1).png
    Remarks on database (1).png
    12 KB · Views: 101
  • Remarks on report (1).png
    Remarks on report (1).png
    5.4 KB · Views: 124

JHB

Have been here a while
Local time
Today, 21:42
Joined
Jun 17, 2012
Messages
7,732
How does the record source for the report look like, does it have all the text shown in picture 1?
 

luzz

Registered User.
Local time
Today, 12:42
Joined
Aug 23, 2017
Messages
346
How does the record source for the report look like, does it have all the text shown in picture 1?

I have textbox for remarks in my report which cut short my whole remarks.

The remarks is also cut short on my query which i used it as my control source.
 

Attachments

  • queryr.png
    queryr.png
    12.5 KB · Views: 82

JHB

Have been here a while
Local time
Today, 21:42
Joined
Jun 17, 2012
Messages
7,732
Then the problem is in the query, show the SQL-string for the query.
 

luzz

Registered User.
Local time
Today, 12:42
Joined
Aug 23, 2017
Messages
346
Then the problem is in the query, show the SQL-string for the query.

I have attached a image of my SQL query
 

Attachments

  • SQLQuery.png
    SQLQuery.png
    9.2 KB · Views: 90

JHB

Have been here a while
Local time
Today, 21:42
Joined
Jun 17, 2012
Messages
7,732
The problem is you've the Remarks under Group By, so change the Remarks in the query to:
Code:
 ..., First(mxd.Remarks) AS Remarks, ...
moke123 send you a link where the problem is described and how it is solved.
 

luzz

Registered User.
Local time
Today, 12:42
Joined
Aug 23, 2017
Messages
346
The problem is you've the Remarks under Group By, so change the Remarks in the query to:
Code:
 ..., First(mxd.Remarks) AS Remarks, ...
moke123 send you a link where the problem is described and how it is solved.

Thank you! It works!
 
Last edited:

Users who are viewing this thread

Top Bottom