如何在Excel 2007中过滤粗体,敲击或斜体文本?


Answers:


2

不完全是 - 您只能根据Excel列的值,单元格颜色或字体颜色过滤Excel列。

但是,使用“查找和替换”,您可以使用可过滤版本替换特定类型的所有格式:例如,使用带有红色文本的单元格替换所有已触发的单元格。然后,您可以在此基础上进行过滤。


1
你也可以使用Excel宏(VBA)
Searush

@Searas - 绝对。
SinisterBeard 2014年

0

斜体模块解决方案(改编自此处

Function IsItalics(rCell As Range)
IsItalics = rCell.Font.Italic
End Function

然后,IsItalics(单元格地址)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.