当前位置: 代码迷 >> VFP >> 怎么用好这个随机函数
  详细解决方案

怎么用好这个随机函数

热度:7949   发布时间:2013-02-26 00:00:00.0
如何用好这个随机函数
repl all 字段 with 数字1,2,3,4的组合,但不重复

如:可以组合成 1234,1243,1324,1342,1432,2431等,共能组合成24种

不知此随机函数如何写?






------解决方案--------------------------------------------------------
Rand(-1) && 这个在程序启动时运行一次即可。

如果字段是字符型
Replace All 字段 With Transform(Int(4*Rand()+1))+Transform(Int(4*Rand()+1))+Transform(Int(4*Rand()+1))+Transform(Int(4*Rand()+1))

如果字段是数值型
Replace All 字段 With VAL(Transform(Int(4*Rand()+1))+Transform(Int(4*Rand()+1))+Transform(Int(4*Rand()+1))+Transform(Int(4*Rand()+1)))

  相关解决方案