简体   繁体   English

当值Y-值Z = 0时如何查找值X

[英]How to find Value X when Value Y - Value Z = 0

I live abroad and I want to send some money back home. 我住在国外,想寄一些钱回家。 The bank will only let me send it in the local currency or 12 other currencies, and mine is not on their list. 银行只允许我以当地货币或其他12种货币发送,而我的不在他们的清单上。 Therefore I only have the option of sending the local currency, which is Japanese Yen, or Euros. 因此,我只能选择发送本地货币,即日元或欧元。 I want to create a spreadsheet, showing me when it would be worth sending in Euros and when it would be worth it sending in Yen. 我想创建一个电子表格,向我显示什么时候值得用欧元发送,什么时候值得用日元发送。 So I have: 所以我有:

Option 1: Send Euros
Option 2: Send Yen

Option 1 will require: 选项1将要求:
2,000 Yen handling fee 2,000日元手续费
Two currency exchange transactions (Yen ---> Euros ---> Swedish Kroner) 两种货币兑换交易(日元--->欧元--->瑞典克朗)

Option 2 will require: 选项2将要求:
2,000 Yen handling fee + 0.1% of amount (minimum 1,500 Yen) 手续费2,000日元+金额的0.1%(最低1,500日元)
One currency transaction (Yen ---> Swedish Kroner) 一笔货币交易(日元--->瑞典克朗)

So I made the following spreadsheet: 因此,我制作了以下电子表格:

Exchange Rate 汇率
JPY/EUR: 143.21 日圆/欧元:143.21
EUR/SEK: 8.209 欧元/瑞典克朗:8.209
JPY/SEK: 0.058065 日圆/ SEK:0.058065

Handling Fee 手续费
EURO: 2000 欧元:2000
JPY: 3500 日圆:3500

Amount : 300,000 金额 :300,000

Option 1 : 17081.782 选项1 :17081.782
Option 2 : 17216.273 选项2 :17216.273

Amount X: ??? 数量X:???

Here the Amount is set to 300,000 Yen 金额设定为300,000日元

Option 1 is: 选项1是:

        ((300,000 - 2,000) / 143.21) * 8.209
        ((Amount - Handling) / JPY/EUR) * EUR/SEK

Option 2 is: 选项2是:

        (300,000 - 3,500) * 0.058065
        (Amount - Handling) * JPY/SEK

(Handling fee in Option 2 is 2,000 + 0.1% of amount, but minimum 1,500, and since 0.1% of 300,000 is 300, it will always be 1,500 for smaller amounts like 300,000.) (选项2中的手续费为2,000 +金额的0.1%,但最低为1,500,由于300,000的0.1%为300,对于较小的金额(例如300,000),它将始终为1,500。)

What I want to find out is Amount X, which is the amount where Option 1 - Option 2 = 0. 我要查找的是金额X,即选项1-选项2 = 0的金额。

Does anyone have any suggestions to how I can obtain Amount X through a formula in Excel so that I will always be given the minimal amount I need to send before Option 1 is better than Option 2. 是否有人对我如何通过Excel中的公式获取金额X有任何建议,以便在选项1优于选项2之前,始终得到我需要发送的最低金额。

With a layout as below and suitable formulae which you clearly can manage, the results in C9 are 17,081.78 kr and in E10 17,216.27 kr . 使用下面的布局以及您可以轻松管理的合适公式,C9中的结果为17,081.78 kr ,E10中的结果为17,216.27 kr The balance point is when D2 is ¥119,132 . 平衡点是D2为¥119,132

SO23540234示例

This can be achieved with algebra by solving for when: 这可以通过代数求解以下时间来实现:

=B9*(D2-D3)/B8  

equals: 等于:

=B10*(D2-D3-MAX(1500,E2*0.001))  

but since the fixed handling fee is common to both options it is slightly easier to calculate the D4 'break-even' value and then add ¥2,000 to it. 但是,由于这两种选择都需要支付固定的手续费,因此计算D4的“收支平衡”值再加上2,000日元会稍微容易一些。 This would be: 这将是:

 =E5/(1-B9/(B8*B10))  

Where, as you suggested, E5 might as well be replaced by 1500 . 正如您所建议的,E5可能也被1500代替。 However to spare the algebra involved in solving for D4 Excel has a feature to help. 但是,除了解决D4求解所涉及的代数以外,Excel还具有帮助功能。 With the first formula above say in G2 and the second in H2 then in I2: 用上面的第一个公式在G2中说,第二个在H2中然后在I2中说:

=G2-H2  

is Option1 - Option2 which is -134.49 where D2 is ¥300,000. Option1 - Option2-134.49其中D2为¥300,000。 You want this to be 0 , so go to DATA > Data Tools - What-If Analysis, Goal Seek..., and Set cell: I2 , to value: 0 , By changing cell: D2 , OK. 您希望它为0 ,因此转到数据>数据工具-假设分析,目标寻求...,然后将单元格: I2设置为值: 0 ,通过更改单元格: D2 ,确定。 Excel will then apply a lot of sensible guesswork and in this case should find the answer, which will show in D2 if you click OK again. 然后,Excel将进行大量明智的猜测,在这种情况下,应找到答案,如果再次单击“确定”,则答案将显示在D2中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM