I have two columns in my sheet. One is for the data and the other is for the percentage. In the data column, I have 5 rows with numbers 1, 2, 3, 4, and 5. The total of these numbers is 15, which is the parent value. I want to use a single formula in the percentage column to calculate the percentage of each of these 5 rows based on the parent value. I want to be able to drag this formula or just change it to a formula column for all the other rows. The expected result for the 5 rows should be 6.67%, 13.33%, 20%, 26.67%, 33.33% respectively as shown in the calculation below.
first child row will be (1/15)*100 = 6.67%,
second child row will be (2/15)*100 = 13.33%,
third child row will be (3/15)*100 = 20%,
fourth child row will be (4/15)*100 = 26.67%,
fifth child row will be (5/15)*100 = 33.33%.