Hi Parvez ,
Sure , no problem.
Your formula in C116 is going to return a text string ; for the values you have given , 2509 in A116 and 1431 in B116 , C116 will have the text string 168% ▲.
To format values greater than 100% in BLUE , and values less than 100% in RED , we need to first find out the value of the percentage ; this is done by looking for the "%" symbol in the text string , and taking all the digits to the left of this ; since this will still be a text string , we need to convert it to a number.
Converting a text string to a number is done by using the VALUE function ; thus =VALUE("168") will give the number 168.
Taking the digits to the left of a point is done by using the LEFT function ; thus LEFT("Excellent",5) will give the text string "Excel".
Looking for any character ( even the % symbol is just another character ) , is done by using the FIND function ; this function returns the position within a text string where the searched for character is found. Thus using =FIND("%","100 %") will return the value 5 ; using =FIND("%","100%") will return 4.
Is this explanation OK ?
Narayan