1

我有两个标准,ISO 和 STIG。我正在尝试根据通用文本将 ISO 政策与 STIG 政策相匹配。ISO 文档中的文本位于其自己的单元格中。STIG 中的文本隐藏在段落中。

示例 ISO 文档:

|3.1.1.1  | Enforce Password History <random number of spaces> | etc...

示例 STIG

|v-1234   | <random text> enforce password history <more text> | etc..

期望的结果

|3.1.1.1  | v-1234  | Enforce Password History | etc...

谢谢!!

4

1 回答 1

0

如果 ISO 详细信息在 A&B 中,STIG 在 C&D 中,请尝试:

在 E1: =INDEX($C:$D,MATCH("*"&TRIM($B1)&"*",$D:$D,0),1)
F1:=IF(NOT(ISERROR(E1)),TRIM(B1))

于 2014-01-09T03:15:54.077 回答