Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,790| Members 17,820, Newest waheguruhelpme| Online 218
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Sum of two sums

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...

Tags
sum, two, sums
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:42 AM
Jen B. via AccessMonster.com's Avatar Jen B. via AccessMonster.com
Guest
 
Posts: n/a
   
   
Sum of two sums

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
Does anyone know how to get two sums to calculate and show on a report?
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/14038-sum-of-two-sums.html

Example: I have two columns in my report: Sum of 1st Mtg. and Sum of 2nd Mtg.

I want the combined total of these two columns underneath. What is the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038
equation?

Also at the end of the report I want to do the same thing.

Example: At the end of the two columns I have: =Sum[(Sum of 1st Mtg.)] and
=Sum[(Sum of 2nd Mtg.)]

I want my report to show the combined grand total of 1st and 2nd mtgs.
underneath that.

If anyone has any ideas on how this is done. I'd sure appreciate it. I
cannot figure out the correct equations.

Thank you

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200607/1




 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:42 AM
Allen Browne's Avatar Allen Browne
Guest
 
Posts: n/a
   
   
Re: Sum of two sums

Just set the Control Source or the 3rd box to:
=[Text100] + [Text101]
or whatever those other text boxes are called.

You might want to specify that if one of the boxes is null, Access should
treat it as a zero:
=Nz([Text100],0) + Nz([Text101],0)

Also, set the Format property of all 3 text boxes to Currency (or perhaps
General Number) so Access knows they are numeric values.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Jen B. via AccessMonster.com" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038
news:63dfd5e22dee7@uwe...
> Does anyone know how to get two sums to calculate and show on a report?
>
> Example: I have two columns in my report: Sum of 1st Mtg. and Sum of 2nd
> Mtg.
>
> I want the combined total of these two columns underneath. What is the
> equation?
>
> Also at the end of the report I want to do the same thing.
>
> Example: At the end of the two columns I have: =Sum[(Sum of 1st Mtg.)]
> and
> =Sum[(Sum of 2nd Mtg.)]
>
> I want my report to show the combined grand total of 1st and 2nd mtgs.
> underneath that.
>
> If anyone has any ideas on how this is done. I'd sure appreciate it. I
> cannot figure out the correct equations.
>
> Thank you



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:42 AM
jmonty's Avatar jmonty
Guest
 
Posts: n/a
   
   
RE: Sum of two sums

Each text box (control) that contains a formula on your report is assigned a
name.
For example purposes...it may be named Text1 and the other Text2.
Text1 would have the formula: =Sum[(Sum of 1st Mtg.)]
Text2 would have the formula: =Sum[(Sum of 2nd Mtg.)]
Just create a new textbox (Text3) and enter the formula: =[Text1] + [Text2]

To find the actual name of each of the two fields, open the report in design
mode.
Right-click on each textbox and select Properties. Click on the ALL tab.
Scroll down to the Name field. It will probably say something like Text1 or
Text45 or Text120, etc. etc. Just replace the correct names in the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038
instructions above.

jmonty


"Jen B. via AccessMonster.com" wrote:

> Does anyone know how to get two sums to calculate and show on a report?
>
> Example: I have two columns in my report: Sum of 1st Mtg. and Sum of 2nd Mtg.
>
> I want the combined total of these two columns underneath. What is the
> equation?
>
> Also at the end of the report I want to do the same thing.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038
>
> Example: At the end of the two columns I have: =Sum[(Sum of 1st Mtg.)] and
> =Sum[(Sum of 2nd Mtg.)]
>
> I want my report to show the combined grand total of 1st and 2nd mtgs.
> underneath that.
>
> If anyone has any ideas on how this is done. I'd sure appreciate it. I
> cannot figure out the correct equations.
>
> Thank you
>
> --
> Message posted via AccessMonster.com
> http://www.accessmonster.com/Uwe/For...ccess/200607/1
>
>

Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:42 AM
Jen B. via AccessMonster.com's Avatar Jen B. via AccessMonster.com
Guest
 
Posts: n/a
   
   
Re: Sum of two sums

Thank you
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038

Allen Browne wrote:
>Just set the Control Source or the 3rd box to:
> =[Text100] + [Text101]
>or whatever those other text boxes are called.
>
>You might want to specify that if one of the boxes is null, Access should
>treat it as a zero:
> =Nz([Text100],0) + Nz([Text101],0)
>
>Also, set the Format property of all 3 text boxes to Currency (or perhaps
>General Number) so Access knows they are numeric values.
>
>> Does anyone know how to get two sums to calculate and show on a report?
>>

>[quoted text clipped - 17 lines]
>>
>> Thank you


--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200607/1

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:42 AM
Jen B. via AccessMonster.com's Avatar Jen B. via AccessMonster.com
Guest
 
Posts: n/a
   
   
RE: Sum of two sums

  Donate Today!  
Thank you

jmonty wrote:
>Each text box (control) that contains a formula on your report is assigned a
>name.
>For example purposes...it may be named Text1 and the other Text2.
>Text1 would have the formula: =Sum[(Sum of 1st Mtg.)]
>Text2 would have the formula: =Sum[(Sum of 2nd Mtg.)]
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038
>Just create a new textbox (Text3) and enter the formula: =[Text1] + [Text2]
>
>To find the actual name of each of the two fields, open the report in design
>mode.
>Right-click on each textbox and select Properties. Click on the ALL tab.
>Scroll down to the Name field. It will probably say something like Text1 or
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=14038
>Text45 or Text120, etc. etc. Just replace the correct names in the
>instructions above.
>
>jmonty
>
>> Does anyone know how to get two sums to calculate and show on a report?
>>

>[quoted text clipped - 15 lines]
>>
>> Thank you


--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200607/1

Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism Who is "Mohan"?
Today 08:46 AM
22 Replies, 348 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,041 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 87 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 120 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 230 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 46 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 66 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 47 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 49 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 416 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 51 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 10:01 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.43612 seconds with 29 queries