我正在验证FormatCurrency函数是否在asp代码中正确编写,我将所有内容都放在excel中查找结果。我想只强调那些不包含“,2”的那些。
**Don't hightlight this:** styResult = FormatCurrency(TotalCostOfOwnership, 2)
**Highlight this:** strResult = FormatCurrency(TotalRevenueStream, 8, 3)
**Don't hightlight this:** styResult = FormatCurrency(TotalCreditsReceived,2)
答案 0 :(得分:1)
将条件格式应用于相关单元格(格式 - >条件格式设置),选择“公式”,使用=ISERROR(FIND("2", A1))
作为公式并明智地选择您喜欢的颜色。