Get total of all row values of one column in Java tutorial

Get total of all row values of one column in Java tutorial

This tutorial is all about Get total of all row values of one column in Java tutorial. In this tutorial you will learn how to add all the rows in one column using java. This is useful when you want to make the report and you want to get all the rows in one column and add it all. Getting the sum of one column row will help you to determine automatically the total of all that numbers. This tutorial using one jtable components and one button. Please follow all the steps below to complete this tutorial.

 

Get total of all row values of one column in Java tutorial steps

First of all, you must create your project by clicking File at the top left of your netbeans and the new project. You can name you project whatever you want. After creating project, the next is to create your own jframe form by right clicking the Source Packages and then clicking New JFrame Form, Drag one table and one button and double click your button and copy and paste the code below:

 

[java]

int sum  = 0;

int rowsCount  = tableName.getRowCount();

for(int i=0; i<rowsCount;i++){

sum += Integer.parseInt(tableName.getValueAt(i, 1).toString());

 

}

JOptionPane.showMessageDialog(null, “The total amount is “+ String.valueOf(sum));

 

[/java]

 

Take note that get value at 1, is the index of your column in my case its 1 because counting starts with 0

 

Then you’re done, run your project and see if it works.

About The Get total of all row values of one column In Java

Project Name: Get total of all row values of one column
Language/s Used: JAVA
Database: None
Type: Desktop Application
Developer: IT SOURCECODE
Updates: 0
Get total of all row values of one column In Java– Project Information

For more questions or any other concerns or thesis/capstone creation with documentation, you can contact me through the following:

E-Mail: [email protected]

Facebook: facebook.com/RyyanSalem

Contact No.: +639098911050

Ryan A. Salem

BSIT Graduate, soon to be MIT.

Java Developer / System Developer

Related topic(s) that you make like:

1.) How to resize column in jtable using java
2.) Delete Confirmation Dialog in Java using Netbeans IDE

Leave a Comment