Mar 24 2022 01:50 AM
I am trying to return a percentage in a cell where fees are charged as follows:
First $1000 @ 1.2%
Next $1000 @ 0.8%
Balance over $2000 @ 0.5%
Any help is greatly appreciated.
Mar 24 2022 02:34 AM - edited Mar 24 2022 02:38 AM
Solution@c_u_o Create a table with the parameters as per your example and use a formula like:
=SUMPRODUCT((A7-lower)*diff,--(A7-lower>0))
where lower and diff are named ranges referring to parts of the parameter table.
File attached.
Mar 24 2022 03:00 AM
@Riny_van_EekelenThank you for your response. This has helped me clarify my original query.