I want to create a list from another list. The list 1 where the values come from looks like this:
name | 0,15 | text | 0,60 | 500
name | 5 | text | 0,30 | 100
name2 | 20 | text | 0,60 | 5000
What I’d want to get is an automated system where that generated list automatically updates as a I add more lines to list 1:
name | 600 ← sum of 4th column: 500+100
name2 | 5000
After adding line:
name | 5 | text | 0,25 | 200
The generated list would be:
name | 800 (600+200)
name2 | 5000
After adding line:
name3 | 55 | text | 0,25 | 200
The generated list would be:
name | 800 (600+200)
name2 | 5000
name3 | 55 | text | 0,25 | 200
It is basically a stock market list where I list stocks I bought, price when bought etc… and then combine all that into a list with all purchases of the same stock is combined in one line. I hope you understand.
I have made a sample calc file.
Untitled 1.ods (12.2 KB)