Results 1 to 6 of 6
  1. #1
    Mahendra1000 is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Sep 2013
    Posts
    101

    How to Increase Memo Length

    Hello,

    I have created a table in which there is one column of type memo. When I copy the content in this column it is allowing me to enter only 255 characters. How to increase the length of this column type memo?

    I have a query with GroupBy. Is it causing me the damage? How to oversome this situation.



    Need your valuable suggestions on this.

  2. #2
    Dal Jeanis is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2013
    Location
    Dallas TX
    Posts
    1,742
    I'm not sure why you would "group by" a memo field. Are there many duplicates of the same memo?

    If you are just including the memo in the Group By in order to get it to show up in the results, consider leaving it out of the Group By and using First(MyMemo) instead.

    If not, please post the SQl from the query so we can see what you are doing.

  3. #3
    Mahendra1000 is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Sep 2013
    Posts
    101
    I used the below query

    SELECT Main.Authors, Main.Title, Main.Language, Main.Pages, Main.Location, Main.[Contributed Authors], Main.Keywords, Main.Email, Main.University, Main.Published, Main.Abstract
    FROM Main
    WHERE (((Main.Authors) Like "*" & [Forms]![MForm]![Authors] & "*") AND ((Main.Title) Like "*" & [Forms]![MForm]![Title] & "*") AND ((Main.Language) Like "*" & [Forms]![MForm]![Language] & "*") AND ((Main.Pages) Like "*" & [Forms]![MForm]![nPages] & "*"))
    GROUP BY Main.Authors, Main.Title, Main.Language, Main.Pages, Main.Location, Main.[Contributed Authors], Main.Keywords, Main.Email, Main.University, Main.Published, Main.Abstract
    HAVING (((Main.Location) Like "*" & [Forms]![MForm]![Location] & "*") AND ((Main.[Contributed Authors]) Like "*" & [Forms]![MForm]![Contributed] & "*") AND ((Main.Keywords) Like "*" & [Forms]![MForm]![Keywords] & "*") AND ((Main.Email) Like "*" & [Forms]![MForm]![Email] & "*") AND ((Main.University) Like "*" & [Forms]![MForm]![University] & "*") AND ((Main.Published) Between Nz([Forms]![MForm]![start],1700) And Nz([Forms]![MForm]![end],3000)) AND ((Main.Abstract) Like "*" & [Forms]![MForm]![Abstract] & "*"));

    Abstract field is the memo in my table.

    I used groupby for the read only permissions. The results displayed by the search button are having write and read permissions too. I don't want the users to have write permissions. So, I used groupby function for granting read only permissions.

  4. #4
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 64bit Access 2013
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,917
    PMFJI but this link might help: http://allenbrowne.com/ser-63.html

  5. #5
    Mahendra1000 is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Sep 2013
    Posts
    101
    Quote Originally Posted by RuralGuy View Post
    PMFJI but this link might help: http://allenbrowne.com/ser-63.html
    Thanks RuralGuy,

    It worked. I used First instead of GroupBy. Now my memo field seems perfect.

  6. #6
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 64bit Access 2013
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,917
    Excellent! Glad we could help.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. VB to Increase record update by 1
    By zarfx4 in forum Access
    Replies: 1
    Last Post: 06-13-2012, 12:22 PM
  2. Increase Size of Field Name
    By tonere in forum Database Design
    Replies: 5
    Last Post: 06-27-2011, 02:30 PM
  3. Increase number by 1
    By elstiv in forum Queries
    Replies: 2
    Last Post: 05-14-2011, 12:25 AM
  4. Increase by 1
    By Mclaren in forum Programming
    Replies: 5
    Last Post: 08-23-2010, 10:53 PM
  5. Increase search speed
    By kjuelfs in forum Queries
    Replies: 3
    Last Post: 07-12-2010, 05:11 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums