我正在创建一个excel表,在列表中查找某个数字字符串并在顶部字段中将其删除,就像 CTRL + H 一样但是自动
因此,如果我的首选列表包含:
1 2 3 4 5 6
7 8 9 10 11 12
用户输入的底部列表,例如他输入:
4 3 11 12
它将从顶部列表
中删除这些数字(空单元格)答案 0 :(得分:0)
可能你可以:
split Top List (with separator = space) into an array of string TList
split User List (with separator = space) into an array of string UList
For each value of UList
if you can find an entry in TList
remove TList
end if
end for each