Randbetween puzzle??!?

G

getexel

I want to get an output into an csv file which I am opening in notepad
that reads like:


create (20 )

where 20 is a random number created using randbetween function


At the moment I am getting an output which is:

create (,20 ,)

How can I get rid of those nasty comma's ?:confused: :confused
 
K

kkknie

Not knowing how you are creating this, I will take a stab at min
reading.... Is this what you have?

CellA1: Create(
CellB1: RandBetween(0,100) {or some limits}
CellC1: )

If so what you really need is:

="Create(" & RANDBETWEEN(0,100) & ")"

and it should only use one cell.

If I've guessed wrong, post back and I'll take another stab at it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top