I have the below data tables. How do i combine them into 1 table where the values are added together. Merge doesnt add the values together so i am a bit stumped.
Effort (hrs)
0.00
0.00
40.00
2.00
0.00
Effort (hrs)
3.00
5.00
80.00
1.00
1.00
Output should look like this:
Effort (hrs)
3.00
5.00
120.00
3.00
1.00
Sure. I would like to point out that, I am only pulling a specific range from the sheet, (Ex. A1-A30) from the excel file. So just 1 column of numbers. I attached 2 files with only the dummy data I pull.
i read data table from the excel sheets. Then i try to combine using the xaml from Hiba_B and it gets the output i put earlier. I am not sure what is causing it to add 2 instead of adding the numbers together.
I figured out a way to do it by reading the cells and putting them into another sheet with a calculated column. for now this will suffice.