Memo Field will not show all data

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amanda27
    New Member
    • Nov 2006
    • 38

    Memo Field will not show all data

    In my database I have a form that you go to enter project status for week ending. In that form I have a subform so that when you pick a project that it brings in the status entered for last week because so you can see what you put for last week before you put in this weeks. The status is set up as a memo field. For this one project it is cutting the data off. However when I go to print the report all the data is there. It's just when I am trying to review what was entered last week it doesn't show everything. It pulls up last weeks status with a query. Could the query be causing the cut in data. If so how do I fix that?
    Thanks
  • MMcCarthy
    Recognized Expert MVP
    • Aug 2006
    • 14387

    #2
    Originally posted by amanda27
    In my database I have a form that you go to enter project status for week ending. In that form I have a subform so that when you pick a project that it brings in the status entered for last week because so you can see what you put for last week before you put in this weeks. The status is set up as a memo field. For this one project it is cutting the data off. However when I go to print the report all the data is there. It's just when I am trying to review what was entered last week it doesn't show everything. It pulls up last weeks status with a query. Could the query be causing the cut in data. If so how do I fix that?
    Thanks
    querying memo fields is a nightmare. It cuts off a 255 characters invariably. As a work around don't have the status field returned by the query. Instead put a dlookup in the textbox.

    Mary

    Comment

    • amanda27
      New Member
      • Nov 2006
      • 38

      #3
      I'm a little confused never working with DLookup before.
      Here is what I have:
      When you go in it auto populates this Friday's date, then you pull down a project from a drop down, then when you pick that project. The status, milestone, and next step (3 seperate memo fields) populate with last weeks project status and its pulling from a query based on the max date and the project you picked from the drop down.
      Where would I put the DLookup? In the query, form, code? I would have to put it for all 3 unless I would make a MakeTableQuery and have it read from there. I am not sure what I should do.
      Can you please help?

      Originally posted by mmccarthy
      querying memo fields is a nightmare. It cuts off a 255 characters invariably. As a work around don't have the status field returned by the query. Instead put a dlookup in the textbox.

      Mary

      Comment

      • MMcCarthy
        Recognized Expert MVP
        • Aug 2006
        • 14387

        #4
        Originally posted by amanda27
        I'm a little confused never working with DLookup before.
        Here is what I have:
        When you go in it auto populates this Friday's date, then you pull down a project from a drop down, then when you pick that project. The status, milestone, and next step (3 seperate memo fields) populate with last weeks project status and its pulling from a query based on the max date and the project you picked from the drop down.
        Where would I put the DLookup? In the query, form, code? I would have to put it for all 3 unless I would make a MakeTableQuery and have it read from there. I am not sure what I should do.
        Can you please help?
        Just stick a textbox (txtDesc) on the form and in the after update event of the combobox put the DLookup.

        Code:
        Me!txtDesc = DLookup( ...

        Comment

        • binner
          New Member
          • Nov 2011
          • 1

          #5
          Try setting the field in the query to First instead of Group By.
          Last edited by NeoPa; Nov 12 '11, 12:24 AM. Reason: Removed unnecessary quote

          Comment

          • Sheilaweb17
            New Member
            • Apr 2012
            • 1

            #6
            Originally posted by binner
            Try setting the field in the query to First instead of Group By.
            Thanks for that - that's got my problem sorted .... cheers

            Comment

            Working...