Forum Discussion
Excel
Jul 23, 2022Iron Contributor
Query related to excel
Hello Everyone, How can I achieve the following calculation in a formula? If the house value is 750,000 or less the maximum mortgage amount allowed is 80% of that value. If the house value i...
- Jul 23, 2022
Excel Let's say the value is in A1, try this:
=MIN(750000,A1)*80%+MAX(0,A1-750000)*50%
HansVogelaar
MVP
Have you tried recording a macro? That might provide a start - you'll have to edit the recorded macro to make it more generic.
Excel
Jul 23, 2022Iron Contributor
Thank you so much sir.
When i do macro, it give me the VBA code.
Thank you so much sir.
When i do macro, it give me the VBA code.
Thank you so much sir.