Yes, you can control decimal places in random numbers using the ROUND function. Combine it with RAND() like this: =ROUND(RAND()*(maximum-minimum)+minimum, number_of_decimals). For example, to get a random number between 1 and 100 with 2 decimal places, use =ROUND(RAND()*99+1, 2). This ensures precise decimal control while maintaining randomness.