MoreBeerMorePower

Power Platform中心だけど、ノーコード/ローコード系を書いてます。

2021-10-05から1日間の記事一覧

New Power Apps function - RandBetween

The Rand() function returns random number between 0-1. To get random number with arbitrary min. and max. value, you can use following expression using Rand(): min + (max-min)*Rand() Alternatively, using Shuffle(...) and Sequence(....), it …