简体   繁体   中英

Color Row based on “Declined” rule

Currently have this and other rules working properly:

=INDIRECT("G"&ROW())="N:Declined:XXRN"

=INDIRECT("G"&ROW())="N:Declined:XXCC"

=INDIRECT("G"&ROW())="N:Declined:XBNC"

But, I'd like to do a wildcard so not matter what the declined code is, the row is formatted as I have configured. But I can't get a wildcard working properly.

Tried:

=INDIRECT("G"&ROW())="N:Declined:*"

=INDIRECT("G"&ROW())="N:Declined:?"

=INDIRECT("G"&ROW())="N:Declined:"&"*"

Any ideas?

Doh! Next page search results helped.

=SEARCH("N:Declined:",INDIRECT("G"&ROW()))

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