Re: Using Excel as editor?
Whoops...
Actually...I was a bit simplistic in the post. The formula would have to be more complicated than =1.1*X2 because that would create decimal values and also values greater than 99.
Really, what I would do is:
=if(X2>90,99,round(1.1*x2))
This means that if the current value is greater than 90, make it 99...otherwise, add 10% and round to the nearest integer.
Whoops...
Actually...I was a bit simplistic in the post. The formula would have to be more complicated than =1.1*X2 because that would create decimal values and also values greater than 99.
Really, what I would do is:
=if(X2>90,99,round(1.1*x2))
This means that if the current value is greater than 90, make it 99...otherwise, add 10% and round to the nearest integer.
I haven't even tried opening anything into Access yet so don't know what you're facing...
Comment