Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
172 views
in Technique[技术] by (71.8m points)

How to divide and split one number into 7 different cells in another sheet?

I am trying to break apart a single number of deliveries (eg. 180) in a week into a daily value grouped by location. 180/7 put into a 7 rows and tied to the location of the 180. I have tried to research this but all of my searches bring me to the split function which does not seem to fit my needs. Array(if( is great for the grouping but it does not split to multiple cells.

ARRAYFORMULA(if(BinCountData!A3:A,"Clarksville",)), BinCountData!A3:D;
question from:https://stackoverflow.com/questions/65906315/how-to-divide-and-split-one-number-into-7-different-cells-in-another-sheet

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

try:

=ARRAYFORMULA((A1/7)*ROW(1:7)^0)

enter image description here

if it needs to be rounded use ROUNDUP or ROUNDDOWN


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...