使用 Access 2003 将不同记录的数据合并到一条记录中

发布于 2024-10-11 09:37:02 字数 542 浏览 3 评论 0原文

我有一个数据库,其中包含 dr、病人、dateofservice(DOS)、xxnum、distinctClaimNumber

我需要做的是对于每个 dr、病人、xxnum,将 DOS 和 ClaimNumber 放在

一起:

dr smith     sleepy      12        1/1/10    12        1/1/11      12     1/12/11
dr smith     sleepy      14        1/1/10    14        3/1/10      14     1/1/11      14     1/12/11
dr jones     doopy       15        2/16/10   15        3/11/10

现在它显示

dr smith    sleepy  12  1/1/10
dr smith    sleepy  12  1/1/11
dr smith    sleepy  12  1/12/11

I have a database that has dr, patient, dateofservice(DOS), xxnum, distinctClaimNumber

What I need to do is for each dr, patient,xxnum, put the DOS and ClaimNumber

so:

dr smith     sleepy      12        1/1/10    12        1/1/11      12     1/12/11
dr smith     sleepy      14        1/1/10    14        3/1/10      14     1/1/11      14     1/12/11
dr jones     doopy       15        2/16/10   15        3/11/10

right now it shows

dr smith    sleepy  12  1/1/10
dr smith    sleepy  12  1/1/11
dr smith    sleepy  12  1/12/11

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷离° 2024-10-18 09:37:02

也许您想要一个交叉表?您可以使用“医生”和“病人”作为行标题,使用“DOS”作为列标题,然后连接其他字段作为值。您会得到如下结果:

                  | 1/1/10  | 2/16/10 | 3/1/10  | 3/11/10  | 1/1/11  |  1/12/11
dr smith | sleepy | 12      |         |  14     |          |  12     |    12
dr smith | dopey  |         |  15     |         |  15      |         |

如果这看起来像您想要的结果,请参阅 office.com 上的一篇文章,其中包含有关交叉表查询的更多信息: http://office.microsoft.com/en-us/access-help/create-a-选择或交叉表查询-mdb-HP005187965.aspx
这是一篇有关交叉表报告的文章: http ://office.microsoft.com/en-us/access-help/create-a-crosstab-report-HP005187407.aspx

Perhaps you want a crosstab? You could use doctor and patient for row headings, DOS as column headings, and then concatenate the other fields for the value. You'd get something like this:

                  | 1/1/10  | 2/16/10 | 3/1/10  | 3/11/10  | 1/1/11  |  1/12/11
dr smith | sleepy | 12      |         |  14     |          |  12     |    12
dr smith | dopey  |         |  15     |         |  15      |         |

If that looks like the result you want, here's an article on office.com with more information about crosstab queries: http://office.microsoft.com/en-us/access-help/create-a-select-or-crosstab-query-mdb-HP005187965.aspx
And here's an article about crosstab reports: http://office.microsoft.com/en-us/access-help/create-a-crosstab-report-HP005187407.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文