ExcelTip.Net留存知识帖 ---【注:附件之前被网盘供应商清空后,现已修复-现已修复-现已修复为本地下载!】
现在位置:首页 > E问E答 > Excel VBA > 您有多富?

您有多富?

作者:绿色风 分类: 时间:2022-08-17 浏览:104
楼主
northwolves
Q:您有多富?
A: 使用下面的函数计算一下即可:

  1. Sub 您有多富()
  2.     Getit InputBox("请输入你的年收入(美元)", "提示", 6000)
  3. End Sub

  4. Sub Getit(ByVal myincome As Long)    'Input
  5. 'myincome = myincome * 0.145465 ' RMB to USD
  6.     Dim i As Long, bindex As Long, sumx As Double, sumy As Double, sumxy As Double, sumx2 As Double
  7.     Dim people, money, slope As Double, intb As Double, pos, percent, msg As String

  8.     If myincome < 100 Then pos = 5780722892#: percent = 99.9: GoTo showmsg
  9.     If myincome > 200000 Then pos = 107565: percent = 0.001: GoTo showmsg

  10.     people = Array(0, 600000, 1200000, 3000000, 4500000, 5100000, 5395000, 5700000, 5940000, 5999990)
  11.     money = Array(50, 400, 500, 850, 1486.67, 2182.35, 25000, 33700, 47500, 202000)
  12.     bindex = WorksheetFunction.Match(myincome, money, 1) - 1
  13.     sumx = people(bindex) + people(bindex + 1)
  14.     sumy = money(bindex) + money(bindex + 1)
  15.     sumxy = people(bindex) * money(bindex) + people(bindex + 1) * money(bindex + 1)
  16.     sumx2 = people(bindex) ^ 2 + people(bindex + 1) ^ 2
  17.     slope = (2 * sumxy - sumx * sumy) / (2 * sumx2 - sumx ^ 2)
  18.     intb = (sumy - slope * sumx) / 2

  19.     pos = Round(6000000000# - ((myincome - intb) / slope) * 1000, 0)
  20.     percent = Format((pos / 6000000000#) * 100, "0.00")

  21. showmsg:
  22.     msg = "您目前年收入 " & myincome & " 美元!" & vbCrLf & vbCrLf
  23.     msg = msg & "您在全球财富排行榜排名 " & pos & " 位!" & vbCrLf & vbCrLf
  24.     msg = msg & "您属于全球 " & percent & "% 最富有的人!" & vbCrLf & vbCrLf
  25.     msg = msg & Right(Space(200) & "阁下", 2 * Round(100 - percent, 0)) & vbCrLf & Right(Space(200) & "↓", 2 * Round(100 - percent, 0)) & vbCrLf
  26.     msg = msg & String(100, "*") & vbCrLf
  27.     msg = msg & "<--穷极→→→→→→→→→→→→→--全球人口 →→→→→→→→→→→→-富极-->"

  28.     MsgBox msg, , "您有多富?"
  29. End Sub

2楼
kevinchengcw
顶一个

免责声明

有感于原ExcelTip.Net留存知识的价值及部分知识具有的时间限定性因素, 经与ExcelTip.Net站长Apolloh商议并征得其同意, 现将原属ExcelTip.Net的知识帖采集资料于本站点进行展示, 供有需要的人士查询使用,也慰缅曾经的论坛时代。 所示各个帖子的原作者如对版权有异议, 可与本人沟通提出,或于本站点留言,我们会尽快处理。 在此,感谢ExcelTip.Net站长Apolloh的支持,感谢本站点所有人**绿色风(QQ:79664738)**的支持与奉献,特此鸣谢!
------本人网名**KevinChengCW(QQ:1210618015)**原ExcelTip.Net总版主之一

评论列表
sitemap