Excel随机化十进制数

Joh*_*Woo 5 random excel

我在MS Excel 2007中发现了一个非常好的功能RANDBETWEEN(bottom, top).这个问题是它只是随机化整数.使用这个公式:

=RANDBETWEEN(7.0, 9.9)
Run Code Online (Sandbox Code Playgroud)

产量

8.0
9.0
7.0
7.0
etc...
Run Code Online (Sandbox Code Playgroud)

如何修改它以便它也会产生如下的十进制数字

7.5
7.2
9.4
9.5
7.1
8.5
etc...
Run Code Online (Sandbox Code Playgroud)

Vic*_*cky 26

使用randbetween(70,99)并将结果除以10.