Excel 2007, value distribution -
i working excel 2007, have 10 values in names (lets 5 masonry, 3 rc, 1 stone , 1 wood), want distribute these values 2 100 other cells same frequency. can me formula?
from information you've given us, if had original ten values in (say) a2:a11, sufficient use following formula copied down pick 1 of them same frequency:-
=index(a$2:a$11,randbetween(1,10))
as mentioned, won't in general 50,30,10,10 values doing way.
you make bit more general using counta number of values (assuming there header in a1 list of values followed blanks):-
=index(a:a,randbetween(2,counta(a:a)))
Comments
Post a Comment