I have Two columns Bytes (B$) and Human Readable (C$). Bytes will be a list of integers and have conditional formatting 'Graded Color Scale' 3-color scale: Green Lowest Value, Yellow 50%, and Red Highest Value.
Human Readable is a formula WHERE B is the Bytes Column.
=
IF(B2>(2^60),TEXT(B2/(2^60),"0.0")&" EB",
IF(B2>(2^50),TEXT(B2/(2^50),"0.0")&" PB",
IF(B2>(2^40),TEXT(B2/(2^40),"0.0")&" TB",
IF(B2>(2^30),TEXT(B2/(2^30),"0.0")&" GB",
IF(B2>(2^20),TEXT(B2/(2^20),"0.0")&" MB",
IF(B2>(2^10),TEXT(B2/(2^10),"0.0")&" KB",
TEXT(B2,"0.0")&" KB"))))))
I would like to extend the color from the conditional formatting on Column B to the corresponding Cell in Column C.
Applies To:
Range. Which you can change on theManage Rules
but will not work in this case. – Scott Craner