我有两列格式不正确的地址。
我需要:
1)只需将邮政编码复制到新栏目中;
2)不包含邮政编码的行要么突出显示,要么为空,以便我可以轻松识别哪些邮件丢失。
这似乎很简单,但我无法弄清楚如何让Excel只找到5个连续数字的所有实例。目前,它们被格式化为文本,以便显示零。任何帮助非常感谢。
Here's what it would be to start with:
Here's what it would look like when done (highlighting optional):
答案 0 :(得分:1)
您在普通Excel中没有正则表达式。你必须进入VBA才能做到这一点。但是,对于您的情况,有一个简单的模式:注意邮政编码在最后空格后的位置,并且它总是长5位数?然后挑战就是找到最后一个空格的索引并提取其后的5个字符。如果将它们分成2个公式
,将会更清楚<table class="table footable " data-page-size="20" data-paging="true" data-filtering="true" data-sorting="true" ">
<thead>
<tr>
<th data-type="number" data-breakpoints="all" >ID</th>
<th data-sortable="false" data-filterable="false" data-formatter="formatter">X</th>
<th data-type="text" data-sortable="true"><?=_("Descripción")?></th>
</tr>
</thead>
<tbody>
<tr class="danger">
<td>1111111111111</td>
<td>1111111111111</td>
<td>1111111111111</td> </tbody> </table>
答案 1 :(得分:0)