#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default running balance

how can i create a running balance when i have a real big data?

column a date
column b dept
column c doc no.
column d product code
column e product descriptiom
column f issue
column g received
column h balance

if i hv a really big database, how can i calculate the balance of each
product when i key in the received or issue figure?

Please help.

Thank you.


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 506
Default running balance

Try this€¦

Copy and paste this formula in I column

If you want to subtract the Received Total from Issue Total then use this
formula
=SUM(G:G)-SUM(F:F)
If you want to subtract the Issue Total from Received Total then use this
formula
=SUM(F:F)-SUM(G:G)

OR

If you want to subtract the each Issue and Received values nearby the cells
then try this in B2

Subtract Received from Issue
=G2-F2
Subtract Issue from Received
=F2-G2
To total the Balance try this
=SUM(H:H)

Copy and paste this formula for the remaining cell.

Hope this will help you.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

how can i create a running balance when i have a real big data?

column a date
column b dept
column c doc no.
column d product code
column e product descriptiom
column f issue
column g received
column h balance

if i hv a really big database, how can i calculate the balance of each
product when i key in the received or issue figure?

Please help.

Thank you.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default running balance

Is there a formula that i can set that when i key in the product code n
amount of issue/received, it will automatically search for the same product n
calculate the balance for me?

Please let me know.. really desperate abt this.

Thank you.


"Ms-Exl-Learner" wrote:

Try this€¦

Copy and paste this formula in I column

If you want to subtract the Received Total from Issue Total then use this
formula
=SUM(G:G)-SUM(F:F)
If you want to subtract the Issue Total from Received Total then use this
formula
=SUM(F:F)-SUM(G:G)

OR

If you want to subtract the each Issue and Received values nearby the cells
then try this in B2

Subtract Received from Issue
=G2-F2
Subtract Issue from Received
=F2-G2
To total the Balance try this
=SUM(H:H)

Copy and paste this formula for the remaining cell.

Hope this will help you.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

how can i create a running balance when i have a real big data?

column a date
column b dept
column c doc no.
column d product code
column e product descriptiom
column f issue
column g received
column h balance

if i hv a really big database, how can i calculate the balance of each
product when i key in the received or issue figure?

Please help.

Thank you.


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 506
Default running balance

Use this formula in H2

=SUMIF(D:D,D2,G:G)-SUMIF(D:D,D2,F:F)

Copy and paste it for the remaining cells of H Column to know the Balance of
Every Products.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

Is there a formula that i can set that when i key in the product code n
amount of issue/received, it will automatically search for the same product n
calculate the balance for me?

Please let me know.. really desperate abt this.

Thank you.


"Ms-Exl-Learner" wrote:

Try this€¦

Copy and paste this formula in I column

If you want to subtract the Received Total from Issue Total then use this
formula
=SUM(G:G)-SUM(F:F)
If you want to subtract the Issue Total from Received Total then use this
formula
=SUM(F:F)-SUM(G:G)

OR

If you want to subtract the each Issue and Received values nearby the cells
then try this in B2

Subtract Received from Issue
=G2-F2
Subtract Issue from Received
=F2-G2
To total the Balance try this
=SUM(H:H)

Copy and paste this formula for the remaining cell.

Hope this will help you.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

how can i create a running balance when i have a real big data?

column a date
column b dept
column c doc no.
column d product code
column e product descriptiom
column f issue
column g received
column h balance

if i hv a really big database, how can i calculate the balance of each
product when i key in the received or issue figure?

Please help.

Thank you.


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default running balance

thanks the formulas works. But i just want to know if instead getting the
full figures in the whole worksheet.. is it posible to get the balance each
transaction instead of the whole lump sum? Please help.

Thank you.

Eliz

"Ms-Exl-Learner" wrote:

Use this formula in H2

=SUMIF(D:D,D2,G:G)-SUMIF(D:D,D2,F:F)

Copy and paste it for the remaining cells of H Column to know the Balance of
Every Products.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

Is there a formula that i can set that when i key in the product code n
amount of issue/received, it will automatically search for the same product n
calculate the balance for me?

Please let me know.. really desperate abt this.

Thank you.


"Ms-Exl-Learner" wrote:

Try this€¦

Copy and paste this formula in I column

If you want to subtract the Received Total from Issue Total then use this
formula
=SUM(G:G)-SUM(F:F)
If you want to subtract the Issue Total from Received Total then use this
formula
=SUM(F:F)-SUM(G:G)

OR

If you want to subtract the each Issue and Received values nearby the cells
then try this in B2

Subtract Received from Issue
=G2-F2
Subtract Issue from Received
=F2-G2
To total the Balance try this
=SUM(H:H)

Copy and paste this formula for the remaining cell.

Hope this will help you.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

how can i create a running balance when i have a real big data?

column a date
column b dept
column c doc no.
column d product code
column e product descriptiom
column f issue
column g received
column h balance

if i hv a really big database, how can i calculate the balance of each
product when i key in the received or issue figure?

Please help.

Thank you.




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 506
Default running balance

Copy the below formula and locate the cursor in H2 and paste it.

=SUMIF($D$1:$D2,$D2,$G$1:$G2)-SUMIF($D$1:$D2,$D2,$F$1:$F2)

After pasting the formula in H2 now you can copy the H2 cell and paste it to
the remaining cells.

Keep in mind that you can paste the above formula other than H column also,
but the pasting cell should be the 2nd row. For example if you want to paste
it in J column then you have to copy and paste it in J2 cell only. After
that you should copy the J2 cell and apply it for the remaining cells.

I think I have explained it clearly.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

thanks the formulas works. But i just want to know if instead getting the
full figures in the whole worksheet.. is it posible to get the balance each
transaction instead of the whole lump sum? Please help.

Thank you.

Eliz

"Ms-Exl-Learner" wrote:

Use this formula in H2

=SUMIF(D:D,D2,G:G)-SUMIF(D:D,D2,F:F)

Copy and paste it for the remaining cells of H Column to know the Balance of
Every Products.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

Is there a formula that i can set that when i key in the product code n
amount of issue/received, it will automatically search for the same product n
calculate the balance for me?

Please let me know.. really desperate abt this.

Thank you.


"Ms-Exl-Learner" wrote:

Try this€¦

Copy and paste this formula in I column

If you want to subtract the Received Total from Issue Total then use this
formula
=SUM(G:G)-SUM(F:F)
If you want to subtract the Issue Total from Received Total then use this
formula
=SUM(F:F)-SUM(G:G)

OR

If you want to subtract the each Issue and Received values nearby the cells
then try this in B2

Subtract Received from Issue
=G2-F2
Subtract Issue from Received
=F2-G2
To total the Balance try this
=SUM(H:H)

Copy and paste this formula for the remaining cell.

Hope this will help you.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Eliz" wrote:

how can i create a running balance when i have a real big data?

column a date
column b dept
column c doc no.
column d product code
column e product descriptiom
column f issue
column g received
column h balance

if i hv a really big database, how can i calculate the balance of each
product when i key in the received or issue figure?

Please help.

Thank you.


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 747
Default running balance

use pivot table for better results



On Oct 22, 11:20*am, Eliz wrote:
how can i create a running balance when i have a real big data?

column a * * date
column b * * dept
column c * * doc no.
column d * * product code
column e * * product descriptiom
column f * * *issue
column g * * received
column h * * balance

if i hv *a really big database, how can i calculate the balance of each
product when i key in the received or issue figure?

Please help.

Thank you.


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default running balance

i want to try to use pivot tables, but i am really not familiar with it.

"muddan madhu" wrote:

use pivot table for better results



On Oct 22, 11:20 am, Eliz wrote:
how can i create a running balance when i have a real big data?

column a date
column b dept
column c doc no.
column d product code
column e product descriptiom
column f issue
column g received
column h balance

if i hv a really big database, how can i calculate the balance of each
product when i key in the received or issue figure?

Please help.

Thank you.


.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Running Balance Victor Excel Discussion (Misc queries) 3 May 25th 08 09:51 PM
Running balance!!!...? [email protected] Excel Worksheet Functions 4 August 24th 06 04:16 PM
to keep a running balance johnilee Excel Discussion (Misc queries) 3 April 18th 06 07:20 AM
rent received/balance owed/running balance spreadsheet Quickbooks dummy Excel Discussion (Misc queries) 1 January 2nd 06 07:34 PM
running balance Jackie New Users to Excel 9 January 7th 05 11:47 PM


All times are GMT +1. The time now is 11:03 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"