Is there a way to do a random value calculation within a range in QGIS? I have been able to do this within ArcMap Field Calculator with the following code:
Dim max, min
max=20
min=5
x=(Int((max-min+1)*Rnd+min))
__esri_field_calculator_splitter__
x
Thanks
