简体   繁体   中英

In excel how do I highlight all rows that do not contain “,2”

I'm verifying the FormatCurrency function is written properly in asp code and I put everything in excel from find results. I want to highlight only the ones that do not contain ",2" in them.

**Don't hightlight this:** styResult = FormatCurrency(TotalCostOfOwnership, 2)
**Highlight this:**        strResult = FormatCurrency(TotalRevenueStream, 8, 3)
**Don't hightlight this:** styResult = FormatCurrency(TotalCreditsReceived,2)

将条件格式应用于有问题的单元格(格式->条件格式),选择“公式为”,使用=ISERROR(FIND("2", A1))作为公式,并明智地选择您喜欢的颜色。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM