Excel 函数

发布于 2024-10-17 04:34:05 字数 343 浏览 2 评论 0原文

以下百分比为出现概率。

我如何在 Excel 中表示这些值。

35% No one buys Coffee Zing
30% 1 person buys Coffee Zing
25% 2 person buys Coffee Zing
10% 3 person buys Coffee Zing

我尝试了一下:=IF(RAND()<=1-J13-J15-J16,1,IF(RAND()<=1-J13-J14-J16,2,IF(RAND()) <=1-J13-J14-J15,3,0)))

但我不知何故感觉它不对。有什么建议吗?

The following percentage are the occurence probability.

How do I represent these values in excel.

35% No one buys Coffee Zing
30% 1 person buys Coffee Zing
25% 2 person buys Coffee Zing
10% 3 person buys Coffee Zing

I tried it out: =IF(RAND()<=1-J13-J15-J16,1,IF(RAND()<=1-J13-J14-J16,2,IF(RAND()<=1-J13-J14-J15,3,0)))

But I somehow feels its wrong. Any suggestion?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兲鉂ぱ嘚淚 2024-10-24 04:34:05

假设在第 1 行中,我们有一些标头(随机 0 1 2 3),

然后在第 2 行中,我们将放置这些机会([空白] 35 30 25 10),

总结这些机会:

B3=B2
C3=B3+C2
D3=C3+D2
E3=D3+E2

然后在第 3 行中,我们方便地 让我们将随机数放入 A3 中:

A3=Rand()*E3

请注意,我将其乘以总数 (100),因为我们将其与整数进行比较,而不是与 0 到 1 表示的百分比进行比较。

第 3 行现在看起来像这样: (30.32352 35 65 90 100)

我们现在对照第 3 行中的值检查随机数,并将答案粘贴在 A4 中:

=IF(A3<B3,B1,IF(A3<C3,C1,IF(A3<D3,D1,IF(A3<E3,E1))))

注意它不需要检查最终值,因此您可以:

=IF(A3<B3,B1,IF(A3<C3,C1,IF(A3<D3,D1,E1)))

Let's say in Row 1, we have some headers (Random 0 1 2 3)

Then in Row 2, we'll put those chances ([blank] 35 30 25 10)

Then in Row 3, we conveniently sum up those chances:

B3=B2
C3=B3+C2
D3=C3+D2
E3=D3+E2

And let's put our random number in A3:

A3=Rand()*E3

Notice that I'm multiplying it by the total (100), because we're comparing it to whole numbers, rather than percentages represented by 0 to 1.

Row 3 will now look something like this: (30.32352 35 65 90 100)

We now check our random number against the values in Row 3, and stick the answer in A4:

=IF(A3<B3,B1,IF(A3<C3,C1,IF(A3<D3,D1,IF(A3<E3,E1))))

Note how it need not bother checking the final value, so you could have:

=IF(A3<B3,B1,IF(A3<C3,C1,IF(A3<D3,D1,E1)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文