Excel table 只显示第一次出现
Excel table show only first occurence
我有一个 excel table 在 A 行按字母顺序排序。在 A 行中只有 4 个不同的值。仅显示 A 行中第一次出现该值的最简单方法是什么?
我尽量避免使用 VBA。
示例:
A B C
Car Blue Gasoline
Red Diesel
Bike Red -
而不是:
A B C
Car Blue Gasoline
Car Red Diesel
Bike Red -
使用条件格式指定如果单元格的值与上面单元格的值匹配,则选择字体颜色与单元格的背景颜色相同。这将使内容 "invisible":
我有一个 excel table 在 A 行按字母顺序排序。在 A 行中只有 4 个不同的值。仅显示 A 行中第一次出现该值的最简单方法是什么?
我尽量避免使用 VBA。
示例:
A B C
Car Blue Gasoline
Red Diesel
Bike Red -
而不是:
A B C
Car Blue Gasoline
Car Red Diesel
Bike Red -
使用条件格式指定如果单元格的值与上面单元格的值匹配,则选择字体颜色与单元格的背景颜色相同。这将使内容 "invisible":