How do i caculate all the numbers under a column and display it in lable
for example
column 1
1
display total
lable = 4
You will get by using SUM() function.
SELECT SUM(column 1) AS Total From tableName
Then show the result to label.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.