Oyseka Posted March 2, 2005 Posted March 2, 2005 I have to produce a solution for production statistics with a visual differentiation between the three classes of results which are >5% below target, >5% above target and within 5% of target. As these results would be a calculation of a number against a pre set target, how can I combine this calc with FM7's ability to colour text. Chris
comment Posted March 2, 2005 Posted March 2, 2005 TextColor ( result ; Case ( result/target < 0.95 ; RGB ( 0 ; 255 ; 0 ) ; result/target > 1.05 ; RGB ( 255 ; 0 ; 0 ) ; RGB ( 0 ; 0 ; 255 ) ) ) Set result to Text, of course.
Recommended Posts
This topic is 7275 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now