I have an excel sheet which fetches data from Oracle DB using OO4O macros. There are 3 columns from the DB.
A B C
1) 1 3 4
2) 3 5 6
3) 7 4 7
Total 11 12 17
Using VBA i have to sum column A (1+3+7=11) and compare with the total.(last row). Rows are dynamic based on the data from oracle. How do i calculate from A1 to the end of row(one row above the total row)
A B C
1) 1 3 4
2) 3 5 6
3) 7 4 7
Total 11 12 17
Using VBA i have to sum column A (1+3+7=11) and compare with the total.(last row). Rows are dynamic based on the data from oracle. How do i calculate from A1 to the end of row(one row above the total row)