randomformulaopenoffice-calc

Formula to return random string from list of strings?


I want to display random courses (MBA, MSc) in OpenOffice Calc. I tried:

=RANDBETWEEN('MBA', 'MSc')  

and

=RAND('MBA', 'MSc')`  

but they don't work as desired.


Solution

  • In OpenOffice Calc, the RAND function returns a value between 0 and 1 - so you will have to combine different formulas to get a random selection from two text values. The following steps are needed:

    Try the following formula:

    =CHOOSE(ROUND(RAND()+1);"MBA";"MSc")
    

    or split up on different lines:

    =CHOOSE(
        ROUND(
            RAND()+1
        );
        "MBA";
        "MSc"
    )
    

    Depending on you localization, you max have to replace the argument separators ; by :.

    Explanation: