如何旋转Excel数据

发布于 2024-10-17 04:51:37 字数 688 浏览 3 评论 0原文

这是一个我一直想知道的普遍问题。有好几次我需要在 Excel 中旋转数据,例如:

开始于:

   |  A  |  B  |  C  |
----------------------
 1 | ABC | DEF | GHI |
----------------------
 2 | omg | lol | xyz |
----------------------
 3 |     |     |     |
----------------------

转换为:

   |  A  |  B  |  C  |
----------------------
 1 | ABC | omg |     |
----------------------
 2 | DEF | lol |     |
----------------------
 3 | GHI | xyz |     |
----------------------

我从未找到合理的方法来执行此操作。我现在能想到的解决方案是:

  1. 编写一个宏(恶心)
  2. 手动复制/粘贴(恶心)
  3. 也许有一些数据透视表魔法? (我怀疑这是可能的)
  4. 使用 INDEX 的聪明公式

是否还有其他解决方案,也许是一些隐藏的内置功能?

This is a general question that just popped into my head that I have always wondered. There have been several times when I've needed to rotate data in Excel, for example:

Starting with:

   |  A  |  B  |  C  |
----------------------
 1 | ABC | DEF | GHI |
----------------------
 2 | omg | lol | xyz |
----------------------
 3 |     |     |     |
----------------------

transform into:

   |  A  |  B  |  C  |
----------------------
 1 | ABC | omg |     |
----------------------
 2 | DEF | lol |     |
----------------------
 3 | GHI | xyz |     |
----------------------

I have never found a reasonable way to do this. Solutions I can think of right now are:

  1. Write a macro (yuck)
  2. Manually copy / paste (yuck)
  3. Maybe some pivot table magic? (i doubt this would be possible)
  4. Clever formulas using INDEX

Are there other solutions, maybe some hidden built-in feature?

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

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

发布评论

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

评论(4

相对绾红妆 2024-10-24 04:51:37
  1. 复制网格
  2. 编辑▸选择性粘贴...
  3. 选中“转置”复选框
  4. 单击“确定”
  1. Copy your grid
  2. Edit ▸ Paste Special...
  3. Check the "Transpose" checkbox
  4. Click "OK"
小情绪 2024-10-24 04:51:37

使用 TRANSPOSE() 函数

Use of the TRANSPOSE() function

轻拂→两袖风尘 2024-10-24 04:51:37

从数据构建数据透视表,然后您可以转置并执行更多操作(过滤、分组等)

Construct a pivot table from the data then you can transpose and do a lot more besides (filter, group etc)

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