I need to generate two sets of numbers.

The first set is from a uniform distribution, each number between 0 and 2. They are equally likely to be drawn. Here I used =RANDBETWEEN and had low=0 and high=2 and that works just fine.

The second set is "You draw a number at random from a normal distribution that has a mean of 1 and a standard deviation of 1".

My question is, what function do I use to generate this number?

I am creating 1000 samples.