google spreadsheet - Conditionally highlight value that is seperated from another but within the same cell -


i have table of data every cell in form 0.123(0.345) (numbers below 1). there way highlight cell if numbers in parentheses less 0.01 without splitting values separate cells?

examples:

0.1(0.0008)   highlighted 0.999(0.673)   not highlighted 

if values in column a, try selecting column , click format > conditional formatting > custom formula is

=abs(value(regexextract(a1,"\(0\.\d*\)")))<0.01


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -