AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / user-1107673

Maqsud Inamdar's questions

Martin Hope
Maqsud Inamdar
Asked: 2020-05-31 00:31:47 +0800 CST

在 Excel 中的可变单词处分隔文本

  • 4

我想将一列中的文本分隔在两个单独的列中。

列应在以下变量Performance和Learning & Growth之后分开Business。

| AM                                          | AN                | AO                     |
|---------------------------------------------|-------------------|------------------------|
| Performance       comment                   | Performance       | comment                |
| Learning & Growth        some comment       | Learning & Growth | some comment           |
| Business       This is third comment        | Business          | This is third comment  |
| Performance          This is fourth comment | Performance       | This is fourth comment |

我尝试了Data Tools > Text to Columns。但这不能Learning & Growth连续工作。

感谢您的时间和考虑

编辑: 我可以使用以下公式拆分评论的上部文本

=TRIM(LEFT(AM2, SEARCH(CHAR(10),AM2,1)-1)))

但我无法拆分下部文本

=RIGHT(AM2,LEN(AN2)-FIND(" ",AM2))

这给了我价值错误

microsoft-excel microsoft-excel-2010
  • 1 个回答
  • 74 Views
Martin Hope
Maqsud Inamdar
Asked: 2019-11-26 03:25:58 +0800 CST

条件相关?

  • 5

给定:我有类似的列

| Location  | Year | A | B   |
|-----------|------|---|-----|
| Delhi     | 1980 | 4 | 3.4 |
| Mumbai    | 1986 | 3 | 3.9 |
| Delhi     | 1990 | 5 | 4.4 |
| Bangalore | 1997 | 2 | 2.6 |
| Delhi     | 1998 | 4 | 3.8 |
| Delhi     | 1991 | 4 | 4.5 |
| Bangalore | 1987 | 4 | 3.8 |
| Mumbai    | 1998 | 5 | 4.8 |

我想在列A和B德里Location类别下执行相关性。

我想只与德里进行相关性Location

| Location | A | B   |
|----------|---|-----|
| Delhi    | 4 | 3.4 |
| Delhi    | 5 | 4.4 |
| Delhi    | 4 | 3.8 |
| Delhi    | 4 | 4.5 |

我尝试CORREL()了功能,但这将提供相关性A和B所有位置。我只想具体Location到相关。

感谢您的时间和考虑。

microsoft-excel google-spreadsheets
  • 1 个回答
  • 979 Views
Martin Hope
Maqsud Inamdar
Asked: 2019-11-09 02:50:27 +0800 CST

我想打印至少在它们各自的最后一个单元格中出现的数字?

  • 5

给定:我有Level 1, Level 2,Level 3列

| Emp Id | Level 1 | Level 2 | Level 3 |
|--------|---------|---------|---------|
| 1      | E001    |         |         |
| 2      |         | E241    |         |
| 3      |         |         | E001    |

问题陈述:我想创建一个包含最后出现的列文本的新列。

预期输出:

| Emp Id | Level 1 | Level 2 | Level 3 | Final |
|--------|---------|---------|---------|-------|
| 1      | E001    |         |         | E001  |
| 2      |         | E241    |         | E241  |
| 3      |         |         | E001    | E001  |

感谢您的时间和考虑。

microsoft-excel google-spreadsheets
  • 1 个回答
  • 49 Views
Martin Hope
Maqsud Inamdar
Asked: 2019-11-09 01:44:36 +0800 CST

我想用逻辑制作新专栏?

  • 7

给定: Employee ID和Manager ID。

| Employee ID | Manager ID |
|:-----------:|:----------:|
| E068        | E067       |
| E071        | E067       |
| E229        | E069       |
| E248        | E144       |
| E226        | E223       |
| E236        | E241       |
| E066        | E001       |
| E067        | E001       |
| E144        | E001       |
| E223        | E001       |

问题陈述:

这个问题是通过使用员工及其经理数据来识别经理的负责人。

关于: 我们有一个Employee ID和他们的Manager ID. 请注意,经理 ID 来自Employee ID。因为每个经理都有一个高于他们级别的经理。

  1. 首先,我们将在Manager ID列中获取所有 UNIQUE ID。
  2. 然后对于列中的每个ID,Manager ID我们将查找它们各自的Manager ID(经理)
  3. 然后我们将创建一个新列,说Level 1我们将把每个人的经理Manager ID放在他们各自的单元格上。
  4. 同样,我们将再次重复上述 3 个过程,直到没有Manager ID该特定 ID。
  5. 这样我们就可以识别Head of Manager。

我可以通过过滤excel来解决问题,但这需要很多时间。因此,我正在寻找可以帮助我的最佳解决方案。

预期输出:

| Employee ID | Manager ID | Level 1 | Level 2 | Head of Manager |
|:-----------:|:----------:|---------|---------|-----------------|
| E068        | E067       | E001    |         | E001            |
| E071        | E067       | E001    |         | E001            |
| E229        | E069       | E066    | E001    | E001            |
| E248        | E144       | E001    |         | E001            |
| E226        | E223       | E001    |         | E001            |
| E236        | E241       |         |         | E241            |
| E066        | E001       |         |         | E001            |
| E067        | E001       |         |         | E001            |
| E144        | E001       |         |         | E001            |
| E223        | E001       |         |         | E001            |

该Employee ID列包含UNIQUE ID而Manager ID包含DUPLICATES ID。

感谢您的时间和考虑。

microsoft-excel worksheet-function
  • 1 个回答
  • 61 Views
Martin Hope
Maqsud Inamdar
Asked: 2019-11-02 06:40:09 +0800 CST

如何在 Excel 中修改唯一 ID?

  • 6

我有一个独特的ID列,我想更新到我的New ID列,它只是E代替10。

|   ID  | New ID |
|:-----:|:------:|
| 10022 | EO22   |
| 10157 | E157   |
| 10015 | E015   |
| 10204 | E204   |
| 10216 | E216   |
| 10264 | E264   |

在这里,我不能使用 REPLACE,因为它会替换整个数据。

感谢您的时间和考虑。

microsoft-excel find-and-replace
  • 1 个回答
  • 36 Views
Martin Hope
Maqsud Inamdar
Asked: 2019-10-31 23:21:06 +0800 CST

如果两个条件都为真,我想计算逻辑按 AND excel 计算

  • 8

我有两列都是分类列。喜欢Age_group和Engagement_category。我想数一数。每个 Age_group 中的每个参与类别。

| Engagement_category | Age_group |
|:-------------------:|:---------:|
| Nearly Engaged      | 21-26     |
| Not Engaged         | 31-36     |
| Disengaged          | 36-41     |
| Nearly Engaged      | 21-26     |
| Engaged             | 21-26     |
| Engaged             | 26-31     |

并输出为

| Age_group | Engaged | Nearly Engaged | Not Engagaged | Disengaged |
|:---------:|:-------:|----------------|---------------|------------|
| 21-26     | 1       |                |               |            |
| 26-31     |         |                |               |            |
| 31-36     |         |                |               |            |
| 36-41     |         |                |               |            |
| 41-46     |         |                |               |            |
| 46-51     |         |                |               |            |

感谢您的时间和考虑。

microsoft-excel worksheet-function
  • 2 个回答
  • 86 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何减少“vmmem”进程的消耗?

    • 11 个回答
  • Marko Smith

    从 Microsoft Stream 下载视频

    • 4 个回答
  • Marko Smith

    Google Chrome DevTools 无法解析 SourceMap:chrome-extension

    • 6 个回答
  • Marko Smith

    Windows 照片查看器因为内存不足而无法运行?

    • 5 个回答
  • Marko Smith

    支持结束后如何激活 WindowsXP?

    • 6 个回答
  • Marko Smith

    远程桌面间歇性冻结

    • 7 个回答
  • Marko Smith

    子网掩码 /32 是什么意思?

    • 6 个回答
  • Marko Smith

    鼠标指针在 Windows 中按下的箭头键上移动?

    • 1 个回答
  • Marko Smith

    VirtualBox 无法以 VERR_NEM_VM_CREATE_FAILED 启动

    • 8 个回答
  • Marko Smith

    应用程序不会出现在 MacBook 的摄像头和麦克风隐私设置中

    • 5 个回答
  • Martin Hope
    Vickel Firefox 不再允许粘贴到 WhatsApp 网页中? 2023-08-18 05:04:35 +0800 CST
  • Martin Hope
    Saaru Lindestøkke 为什么使用 Python 的 tar 库时 tar.xz 文件比 macOS tar 小 15 倍? 2021-03-14 09:37:48 +0800 CST
  • Martin Hope
    CiaranWelsh 如何减少“vmmem”进程的消耗? 2020-06-10 02:06:58 +0800 CST
  • Martin Hope
    Jim Windows 10 搜索未加载,显示空白窗口 2020-02-06 03:28:26 +0800 CST
  • Martin Hope
    andre_ss6 远程桌面间歇性冻结 2019-09-11 12:56:40 +0800 CST
  • Martin Hope
    Riley Carney 为什么在 URL 后面加一个点会删除登录信息? 2019-08-06 10:59:24 +0800 CST
  • Martin Hope
    zdimension 鼠标指针在 Windows 中按下的箭头键上移动? 2019-08-04 06:39:57 +0800 CST
  • Martin Hope
    jonsca 我所有的 Firefox 附加组件突然被禁用了,我该如何重新启用它们? 2019-05-04 17:58:52 +0800 CST
  • Martin Hope
    MCK 是否可以使用文本创建二维码? 2019-04-02 06:32:14 +0800 CST
  • Martin Hope
    SoniEx2 更改 git init 默认分支名称 2019-04-01 06:16:56 +0800 CST

热门标签

windows-10 linux windows microsoft-excel networking ubuntu worksheet-function bash command-line hard-drive

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve