473,659 Members | 2,722 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

running balance in datagrid

Anyone know how can I create a running balance in a datagrid? In
MS-Access this could be very simple. This is what my sql in MS-Access
query:

SELECT AccountDetails. AccountDetailID AS AccountDetailID Alias,
AccountDetails. AccountID, AccountDetails. Date, AccountDetails. Invoice,
AccountDetails. Debit, AccountDetails. Credit,
Format(DSum("[Debit]-[Credit]","AccountDetai ls","[AccountDetailID]<=" &
[AccountDetailID Alias]),".00") AS Balance
FROM AccountDetails;

I used OleDbDataAdapte r and a dataset to bind a datagrid.

Thanks in advance.

Mar 15 '06 #1
2 2541
jaypee,

This is a VB language code newsgroup. Therefore we are not so interested in
your SQL language code, however in the VB language code that you have used
(and tell what kind of datagrid it is Windowform or Webform)

Probably it is than easy to help you.

Cor

<ja********@gma il.com> schreef in bericht
news:11******** *************@v 46g2000cwv.goog legroups.com...
Anyone know how can I create a running balance in a datagrid? In
MS-Access this could be very simple. This is what my sql in MS-Access
query:

SELECT AccountDetails. AccountDetailID AS AccountDetailID Alias,
AccountDetails. AccountID, AccountDetails. Date, AccountDetails. Invoice,
AccountDetails. Debit, AccountDetails. Credit,
Format(DSum("[Debit]-[Credit]","AccountDetai ls","[AccountDetailID]<=" &
[AccountDetailID Alias]),".00") AS Balance
FROM AccountDetails;

I used OleDbDataAdapte r and a dataset to bind a datagrid.

Thanks in advance.

Mar 15 '06 #2
I'm using a windowform.
SELECT AccountDetails. AccountDetailID AS AccountDetailID Alias,
AccountDetails. AccountID, AccountDetails. Date, AccountDetails. Invoice,
AccountDetails. Debit, AccountDetails. Credit,
Format(DSum("[Debit]-[Credit]","AccountDetai ls","[AccountDetailID]<=" &
[AccountDetailID Alias]),".00") AS Balance
FROM AccountDetails;

this sql statement is under the selectcommand of oledbdataadapte r.
Cor Ligthert [MVP] wrote: jaypee,

This is a VB language code newsgroup. Therefore we are not so interested in
your SQL language code, however in the VB language code that you have used
(and tell what kind of datagrid it is Windowform or Webform)

Probably it is than easy to help you.

Cor

<ja********@gma il.com> schreef in bericht
news:11******** *************@v 46g2000cwv.goog legroups.com...
Anyone know how can I create a running balance in a datagrid? In
MS-Access this could be very simple. This is what my sql in MS-Access
query:

SELECT AccountDetails. AccountDetailID AS AccountDetailID Alias,
AccountDetails. AccountID, AccountDetails. Date, AccountDetails. Invoice,
AccountDetails. Debit, AccountDetails. Credit,
Format(DSum("[Debit]-[Credit]","AccountDetai ls","[AccountDetailID]<=" &
[AccountDetailID Alias]),".00") AS Balance
FROM AccountDetails;

I used OleDbDataAdapte r and a dataset to bind a datagrid.

Thanks in advance.


Mar 15 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
6774
by: bobdydd | last post by:
Hi Guys Can anyone help I am trying to find a way to implement a running balance that will re-calculate if the date order is changed, or if an earlier record is changed like you might want to do during a bank statement reconcile. I am using the following fields Date|Payment|Deposit|Running_Balance (tblTransactions)
4
2685
by: Rose | last post by:
A newbie question: I would like my repeater to look like the following where in the Balance column, I want to keep a running balance, like so Description Amount Balance Item 1 $10 $10 Item 2 $15 $25 Item 3 $5 $30 Essentially, Balance = Balance + Amount for each row. I want to do this in a
1
2112
by: Tom Brown | last post by:
I have a report I created which pulls all data by month by category and gives me running totals month by month. My problem is I need the ending balance running total to move down to the next line in the report as a beginning balance. How can I set that up in the report? I also need to put a zero in the Jan06 Beginning Balance column. Example: Period Begin Bal Accruals Pymts Rcls WO ...
1
2256
by: Tigerlily | last post by:
// Program to create new accounts, perform deposits, withdrawals, and bank //inquiries #include<iostream> #include<fstream> using namespace std; void menu(); int read_accts(int , double , int); void withdrawal(int , double , int); void deposit(int , double , int); int new_acct(int , double , int);
6
7882
by: balancetotal | last post by:
Creating a running sum in continuous form in Access 2003 -------------------------------------------------------------------------------- Hello: I have three forms on my user-interface. Main form is called frmPatients. Within this main form is an embedded form called fromVisitDates. Linked to this form is the form called fsubfrmServices.
2
2155
by: EManning | last post by:
Using A2K. I've got a report/subreport that looks like the following: <main report> Account AAA Beginning Fund Balance: $10,000 <subreport> "Expense" "Total" "Balance" Expense #1 $4,000 $6,000 Expense #2 $50 $5,950 Expense #3 $100 $5,850
1
2743
by: BrianMiller | last post by:
I have searched for an answer but have failed to come up with anything that seems to work. I am trying to set up an Access 2003 database for home accounts. I want to create a running sum (a balance based on what has been spent or paid in). I have a table called tblCardBankPymnts. In that I have a Figure column for what transaction has been done. I also have a Balance column but think I should not have this now. I then have a form to...
2
4029
by: mauking | last post by:
Hello Everyone, Im a certified public accountant here in the Philippines. Im using microsoft access 2000 and 2003 running in a Windows XP environment. Im having a problem of how to calculate a running balance using a query coming from two tables. This is my problem. I have two tables (Sales and Collections), with these table I wanted to have a query to recalculate a running balance everytime there is a sales and collections...
0
1390
by: dustonheaven | last post by:
I need to calculate running balance on data containing Null, which is sorted by few columns. As example below, Clr is sorted by Null Desc, then by date, then just by ID. So far, I just come out with this... SELECT tr1.Clr, tr1.ID, tr1.Date, tr1.Acc, tr1.Dbt, tr1.Cdt, (SELECT SUM(Nz(tr2.Dbt) - Nz(tr2.Cdt)) FROM tbl00 AS tr2 WHERE (tr2.Acc = tr1.Acc AND tr2.Clr <= tr1.Clr)) AS Bal FROM tbl00 AS tr1 WHERE (((tr1.Acc)=12345) AND...
0
8427
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8851
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8746
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8525
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7356
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6179
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4175
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2750
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1737
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.