简体   繁体   中英

Access Make table with memo field as column output instead of Text

The Access make table below does the following:

Final app number 10 has three sub apps 6, 7 ,8 in AppCombinedAreasandRegions. Their FirstOfRegion (Memo Field) respectively are "a","b","c". Based on the make table, the ConcatRelated function will create a row in the output table as follows.

Project Application: 10
Region_list: "a,b,c"

Currently I have this part working.

The issue is the output table stores Region_List ("a,b,c") as a TEXT field, meaning there is a limit and the value from the ConcatRelated function gets truncated. Since the source is a memo field, there will be cases where it exceeds the 255 character limit.

Is there a way for Region_List to be a memo field instead of a text field when using the ConcatRelated function to get the concatenated output?

答案是追加到现有表(首先清除它),并将concatRelated列从“分组依据”设置为“表达式”。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM