ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   generate automatically sum (https://www.excelbanter.com/excel-worksheet-functions/205428-generate-automatically-sum.html)

Luchian

generate automatically sum
 
Please help on this:
I have 5 colomn with 6 row with number 1 or 0

A B C D E
0 1 0 1 1
1 0 0 1 1
1 1 1 0 0
0 0 0 0 0
0 1 1 0 0
1 1 1 0 1

It's possibile to generate in column F all possibile results if sum one cell
in every row. If i make simple formula (add one cell in everry row, one by
one) will look like that:

F
A1+A2+A3+A4+A5+A6
A1+A2+A3+A4+A5+B6
....
A1+A2+A3+B4+B5+B6
....
B1+A2+A3+A4+B5+B6
....
B1+C2+A3+D4+B5+E6
....
E1+E2+E3+E4+E5+E6


It was 15625 (5^) formulas to insert . Can i GENERATE ALL THIS SUMS
automatically?



Susan

generate automatically sum
 
well, manually you could type in cell F1

=sum(a1:e1)

and then use the fill handle to drag it down your 15000 rows. it will
automatically adjust for each row.


you could also use a macro. right click on your sheet tab, choose
"view code" and then paste this:

Sub Luchian()

Dim myRange As Range
Dim c As Range

Set myRange = ActiveSheet.Range("f1:f15625")

For Each c In myRange
c.Formula = "=sum(a" & c.Row & ":e" & c.Row & ")"
Next c

End Sub


hope it helps!
:)
susan


On Oct 7, 2:20*pm, Luchian wrote:
Please help on this:
I have 5 colomn with 6 row with number 1 or 0

A * *B * *C * * D * * E
0 * *1 * * 0 * * 1 * * 1
1 * *0 * * 0 * * 1 * * 1
1 * *1 * * 1 * * 0 * * 0
0 * *0 * * 0 * * 0 * * 0
0 * *1 * * 1 * * 0 * * 0
1 * *1 * * 1 * * 0 * * 1

It's possibile to generate in column F all possibile results if sum one cell
in every row. If i make simple formula (add one cell in everry row, one by
one) *will look like that:

F
A1+A2+A3+A4+A5+A6
A1+A2+A3+A4+A5+B6
...
A1+A2+A3+B4+B5+B6
...
B1+A2+A3+A4+B5+B6
...
B1+C2+A3+D4+B5+E6
...
E1+E2+E3+E4+E5+E6 *

It was 15625 (5^) formulas to insert . Can i GENERATE ALL THIS SUMS
automatically?



Susan

generate automatically sum
 
well, never mind. i think i did not comprehend what you want to do.
maybe it will give you an idea, though.
:(
susan


On Oct 7, 2:20*pm, Luchian wrote:
Please help on this:
I have 5 colomn with 6 row with number 1 or 0

A * *B * *C * * D * * E
0 * *1 * * 0 * * 1 * * 1
1 * *0 * * 0 * * 1 * * 1
1 * *1 * * 1 * * 0 * * 0
0 * *0 * * 0 * * 0 * * 0
0 * *1 * * 1 * * 0 * * 0
1 * *1 * * 1 * * 0 * * 1

It's possibile to generate in column F all possibile results if sum one cell
in every row. If i make simple formula (add one cell in everry row, one by
one) *will look like that:

F
A1+A2+A3+A4+A5+A6
A1+A2+A3+A4+A5+B6
...
A1+A2+A3+B4+B5+B6
...
B1+A2+A3+A4+B5+B6
...
B1+C2+A3+D4+B5+E6
...
E1+E2+E3+E4+E5+E6 *

It was 15625 (5^) formulas to insert . Can i GENERATE ALL THIS SUMS
automatically?



Luchian

generate automatically sum
 
Well, it's not what i want, but you give me a clue with macro. Thank you

"Susan" a scris:

well, never mind. i think i did not comprehend what you want to do.
maybe it will give you an idea, though.
:(
susan


On Oct 7, 2:20 pm, Luchian wrote:
Please help on this:
I have 5 colomn with 6 row with number 1 or 0

A B C D E
0 1 0 1 1
1 0 0 1 1
1 1 1 0 0
0 0 0 0 0
0 1 1 0 0
1 1 1 0 1

It's possibile to generate in column F all possibile results if sum one cell
in every row. If i make simple formula (add one cell in everry row, one by
one) will look like that:

F
A1+A2+A3+A4+A5+A6
A1+A2+A3+A4+A5+B6
...
A1+A2+A3+B4+B5+B6
...
B1+A2+A3+A4+B5+B6
...
B1+C2+A3+D4+B5+E6
...
E1+E2+E3+E4+E5+E6

It was 15625 (5^) formulas to insert . Can i GENERATE ALL THIS SUMS
automatically?




Pete_UK

generate automatically sum
 
Here's a way of doing it by a single formula in F1 and then copied
down.

To check that it works, though, put these simpler formulae in the
cells stated:

G1: =CHAR(65+MOD(INT((ROW()-1)/5/5/5/5/5),5))&"1"
H1: =CHAR(65+MOD(INT((ROW()-1)/5/5/5/5),5))&"2"
I1: =CHAR(65+MOD(INT((ROW()-1)/5/5/5),5))&"3"
J1: =CHAR(65+MOD(INT((ROW()-1)/5/5),5))&"4"
K1: =CHAR(65+MOD(INT((ROW()-1)/5),5))&"5"
L1: =CHAR(65+MOD(ROW()-1,5))&"6"

If you copy those down you will get this in the first few rows:

A1 A2 A3 A4 A5 A6
A1 A2 A3 A4 A5 B6
A1 A2 A3 A4 A5 C6
A1 A2 A3 A4 A5 D6
A1 A2 A3 A4 A5 E6
A1 A2 A3 A4 B5 A6
A1 A2 A3 A4 B5 B6
A1 A2 A3 A4 B5 C6
A1 A2 A3 A4 B5 D6
A1 A2 A3 A4 B5 E6
A1 A2 A3 A4 C5 A6
A1 A2 A3 A4 C5 B6
A1 A2 A3 A4 C5 C6

and if you copy all the way to row 15625 you will find all
combinations of the cell references.

So, all we need to do is to combine those into one formula and get
Excel to convert the strings into cell references. Put this in F1:

=INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5/5/5),5))&"1")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5/5),5))&"2")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5),5))&"3")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5),5))&"4")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5),5))&"5")
+INDIRECT(CHAR(65+MOD((ROW()-1),5))&"6")

and then you can copy this down to F15625. You can delete columns G to
L.

Hope this helps.

Pete


On Oct 7, 7:20*pm, Luchian wrote:
Please help on this:
I have 5 colomn with 6 row with number 1 or 0

A * *B * *C * * D * * E
0 * *1 * * 0 * * 1 * * 1
1 * *0 * * 0 * * 1 * * 1
1 * *1 * * 1 * * 0 * * 0
0 * *0 * * 0 * * 0 * * 0
0 * *1 * * 1 * * 0 * * 0
1 * *1 * * 1 * * 0 * * 1

It's possibile to generate in column F all possibile results if sum one cell
in every row. If i make simple formula (add one cell in everry row, one by
one) *will look like that:

F
A1+A2+A3+A4+A5+A6
A1+A2+A3+A4+A5+B6
...
A1+A2+A3+B4+B5+B6
...
B1+A2+A3+A4+B5+B6
...
B1+C2+A3+D4+B5+E6
...
E1+E2+E3+E4+E5+E6 *

It was 15625 (5^) formulas to insert . Can i GENERATE ALL THIS SUMS
automatically?



Luchian

generate automatically sum
 
That it! Thank you!!!

"Pete_UK" a scris:

Here's a way of doing it by a single formula in F1 and then copied
down.

To check that it works, though, put these simpler formulae in the
cells stated:

G1: =CHAR(65+MOD(INT((ROW()-1)/5/5/5/5/5),5))&"1"
H1: =CHAR(65+MOD(INT((ROW()-1)/5/5/5/5),5))&"2"
I1: =CHAR(65+MOD(INT((ROW()-1)/5/5/5),5))&"3"
J1: =CHAR(65+MOD(INT((ROW()-1)/5/5),5))&"4"
K1: =CHAR(65+MOD(INT((ROW()-1)/5),5))&"5"
L1: =CHAR(65+MOD(ROW()-1,5))&"6"

If you copy those down you will get this in the first few rows:

A1 A2 A3 A4 A5 A6
A1 A2 A3 A4 A5 B6
A1 A2 A3 A4 A5 C6
A1 A2 A3 A4 A5 D6
A1 A2 A3 A4 A5 E6
A1 A2 A3 A4 B5 A6
A1 A2 A3 A4 B5 B6
A1 A2 A3 A4 B5 C6
A1 A2 A3 A4 B5 D6
A1 A2 A3 A4 B5 E6
A1 A2 A3 A4 C5 A6
A1 A2 A3 A4 C5 B6
A1 A2 A3 A4 C5 C6

and if you copy all the way to row 15625 you will find all
combinations of the cell references.

So, all we need to do is to combine those into one formula and get
Excel to convert the strings into cell references. Put this in F1:

=INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5/5/5),5))&"1")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5/5),5))&"2")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5),5))&"3")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5),5))&"4")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5),5))&"5")
+INDIRECT(CHAR(65+MOD((ROW()-1),5))&"6")

and then you can copy this down to F15625. You can delete columns G to
L.

Hope this helps.

Pete


On Oct 7, 7:20 pm, Luchian wrote:
Please help on this:
I have 5 colomn with 6 row with number 1 or 0

A B C D E
0 1 0 1 1
1 0 0 1 1
1 1 1 0 0
0 0 0 0 0
0 1 1 0 0
1 1 1 0 1

It's possibile to generate in column F all possibile results if sum one cell
in every row. If i make simple formula (add one cell in everry row, one by
one) will look like that:

F
A1+A2+A3+A4+A5+A6
A1+A2+A3+A4+A5+B6
...
A1+A2+A3+B4+B5+B6
...
B1+A2+A3+A4+B5+B6
...
B1+C2+A3+D4+B5+E6
...
E1+E2+E3+E4+E5+E6

It was 15625 (5^) formulas to insert . Can i GENERATE ALL THIS SUMS
automatically?




Pete_UK

generate automatically sum
 
You're welcome - thanks for feeding back.

Incidentally, what did you need this for?

Pete

On Oct 8, 11:34*am, Luchian wrote:
That it! Thank you!!!

"Pete_UK" a scris:



Here's a way of doing it by a single formula in F1 and then copied
down.


To check that it works, though, put these simpler formulae in the
cells stated:


G1: * *=CHAR(65+MOD(INT((ROW()-1)/5/5/5/5/5),5))&"1"
H1: * *=CHAR(65+MOD(INT((ROW()-1)/5/5/5/5),5))&"2"
* I1: * *=CHAR(65+MOD(INT((ROW()-1)/5/5/5),5))&"3"
*J1: * *=CHAR(65+MOD(INT((ROW()-1)/5/5),5))&"4"
K1: * *=CHAR(65+MOD(INT((ROW()-1)/5),5))&"5"
*L1: * *=CHAR(65+MOD(ROW()-1,5))&"6"


If you copy those down you will get this in the first few rows:


A1 * A2 * A3 * A4 * A5 * A6
A1 * A2 * A3 * A4 * A5 * B6
A1 * A2 * A3 * A4 * A5 * C6
A1 * A2 * A3 * A4 * A5 * D6
A1 * A2 * A3 * A4 * A5 * E6
A1 * A2 * A3 * A4 * B5 * A6
A1 * A2 * A3 * A4 * B5 * B6
A1 * A2 * A3 * A4 * B5 * C6
A1 * A2 * A3 * A4 * B5 * D6
A1 * A2 * A3 * A4 * B5 * E6
A1 * A2 * A3 * A4 * C5 * A6
A1 * A2 * A3 * A4 * C5 * B6
A1 * A2 * A3 * A4 * C5 * C6


and if you copy all the way to row 15625 you will find all
combinations of the cell references.


So, all we need to do is to combine those into one formula and get
Excel to convert the strings into cell references. Put this in F1:


=INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5/5/5),5))&"1")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5/5),5))&"2")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5/5),5))&"3")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5/5),5))&"4")
+INDIRECT(CHAR(65+MOD(INT((ROW()-1)/5),5))&"5")
+INDIRECT(CHAR(65+MOD((ROW()-1),5))&"6")


and then you can copy this down to F15625. You can delete columns G to
L.


Hope this helps.


Pete


On Oct 7, 7:20 pm, Luchian wrote:
Please help on this:
I have 5 colomn with 6 row with number 1 or 0


A * *B * *C * * D * * E
0 * *1 * * 0 * * 1 * * 1
1 * *0 * * 0 * * 1 * * 1
1 * *1 * * 1 * * 0 * * 0
0 * *0 * * 0 * * 0 * * 0
0 * *1 * * 1 * * 0 * * 0
1 * *1 * * 1 * * 0 * * 1


It's possibile to generate in column F all possibile results if sum one cell
in every row. If i make simple formula (add one cell in everry row, one by
one) *will look like that:


F
A1+A2+A3+A4+A5+A6
A1+A2+A3+A4+A5+B6
...
A1+A2+A3+B4+B5+B6
...
B1+A2+A3+A4+B5+B6
...
B1+C2+A3+D4+B5+E6
...
E1+E2+E3+E4+E5+E6 *


It was 15625 (5^) formulas to insert . Can i GENERATE ALL THIS SUMS
automatically?- Hide quoted text -


- Show quoted text -




All times are GMT +1. The time now is 07:06 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com