在 MS Outlook 中以 html 格式删除一个单元格中的重复数据并合并数据
当我单击 MS Access 表单上的按钮时,它将在 MS OUtlook 中以表格格式显示以下格式的数据...数据正在从表格中获取。
ID - Name - Year - Fname - Product
1 - XYZ - Feb2011 - John - p1
1 - XYZ - Feb2011 - John - p2
1 - XYZ - Feb2011 - Ken - p3
1 - XYZ - Feb2011 - Ken - p4
我想以下面的格式显示数据,而不是上面的格式。所有 (-) 位置均应替换为 rows &列。
ID - Name - Year - Fname - Product
1 - XYZ - Feb2011 - John - p1
- - - - p2
- - - Ken - p3
- - - - p4
When I click button on MS Access form, it will display data in the below format in MS OUtlook in table format...Data is getting from tables.
ID - Name - Year - Fname - Product
1 - XYZ - Feb2011 - John - p1
1 - XYZ - Feb2011 - John - p2
1 - XYZ - Feb2011 - Ken - p3
1 - XYZ - Feb2011 - Ken - p4
Instead of above format, i want to display data in below format. All (-) places should be replace with rows & columns.
ID - Name - Year - Fname - Product
1 - XYZ - Feb2011 - John - p1
- - - - p2
- - - Ken - p3
- - - - p4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为以形式来做到这一点是非常困难的。
但是,您可以尝试在报告中轻松完成此操作。
像往常一样设计报告。然后,对于每个字段,您可以将 HideDuplicates 属性设置为 true。
I think that it's very dificult to do in a form.
But, you can try to do it in a report easily.
Design a report as usual. Then for each field, you can set the HideDuplicates property to true.
根据您的 Office 版本,您需要使用 MSWord 作为电子邮件的编辑器。然后您可以创建一个表并在其中插入数据。这是因为 Word 的所有功能都可供您使用。
您仍然可以通过 Access 执行此操作。我建议你先学习如何在Word中做表格等。在 Word 中,您可以录制宏,然后查看生成的代码。这将为您提供大约 80% 的所需代码。然后,您需要处理记录集的循环,每次向表中添加一个新行。
Depending on your version of Office you need to use MSWord as the editor for the email. Then you can create a table and insert your data in it. This is because all the functions of Word are then available to you.
You can do this still from Access. What I suggest is that you learn first how to do the table etc in Word. In word you can record a macro and then see the resulting code. This is going to give you about 80% of the code you need. Then you need to deal with your loop through your record set, adding a new line to your table each time.