daddioja Posted September 3, 2004 Posted September 3, 2004 I have a field with a number value. I want to calculate those values into a percentage equivalent based on the highest number in the range. So I have these numbers: 117, 94, 55, 103 in the field "value." I want 117, which is the highest to be calculated as 95%. Everything below that would be calculated as percentages based off that startign point. 94 would be 76% and so on. How can I make this happen? Thanks for any help.
Ugo DI LUCA Posted September 3, 2004 Posted September 3, 2004 Hi, Choose(ParentByConstant::value=Max(ParentByConstant::value),Round(1-(Max(ParentByConstant::value)/value-1),2),.95) with ParentByConstant being a constant relationship.
daddioja Posted September 4, 2004 Author Posted September 4, 2004 Thanks Ugo. I think I am going to have to look into those functions before I even try this. It seems a little above my head at the moment. I will try to play with it. Thanks for pointing me in a direction.
Recommended Posts
This topic is 7454 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