#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Quick help

How would I add a range instead of a single cell, A6, in the following
formula: SUMIF('Itemized
Expenses'!$J:$J,"="&($A6&TEXT(C$4,"mmm-yy")),'Itemized Expenses'!$E:$E)

I want to say for example between 1000-1999 instead of the "$A6&TEXT"
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,345
Default Quick help

What does your data in Column J look like?

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Helpmeeee" wrote in message
...
How would I add a range instead of a single cell, A6, in the following
formula: SUMIF('Itemized
Expenses'!$J:$J,"="&($A6&TEXT(C$4,"mmm-yy")),'Itemized Expenses'!$E:$E)

I want to say for example between 1000-1999 instead of the "$A6&TEXT"



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Quick help

It's weird how it's set up. It's actually the A column of the 'itemized
expenses' it has numbers ranging from 1000 to 15999+.

He's a link to the template I am trying to modify.
http://office.microsoft.com/en-us/te...CT101441121033 I want Monthly totals

I want for example C6 of the Monthly Expense Summary worksheet to be able to
calucate a range of itemized expneses from column A of the Itemized Expense
worksheet. Instead of just 1000 excatly, I want it to calcuate between
1000-1999. Thanks.


"Sandy Mann" wrote:

What does your data in Column J look like?

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Helpmeeee" wrote in message
...
How would I add a range instead of a single cell, A6, in the following
formula: SUMIF('Itemized
Expenses'!$J:$J,"="&($A6&TEXT(C$4,"mmm-yy")),'Itemized Expenses'!$E:$E)

I want to say for example between 1000-1999 instead of the "$A6&TEXT"




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,345
Default Quick help

Not having XL2000 or better I cannot download the template but with the
codes in Column A and the expences in Column E then:

=SUMPRODUCT((A2:A20=1000)*(A2:A20<2000)*E2:E20)

will sum all codes from 1000 to 1999 inclusive.

I don't see any dates in the template preview but going by your post if the
dates are in Column C then:

=SUMPRODUCT((A2:A200=1000)*(A2:A200<2000)*(C2:C20 0=DATE(YEAR(TODAY()),1,1))*(C2:C200<=TODAY())*E2: E200)

will give you a sum of all codes 1000-1999 in the callender year to date
and:

=SUMPRODUCT((A2:A20=1000)*(A2:A20<2000)*(MONTH(C2 :C20)=10)*(YEAR(C2:C20)=2008)*E2:E20)

will give you a sum of all codes 1000-1999 for this month only

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Helpmeeee" wrote in message
...
It's weird how it's set up. It's actually the A column of the 'itemized
expenses' it has numbers ranging from 1000 to 15999+.

He's a link to the template I am trying to modify.
http://office.microsoft.com/en-us/te...CT101441121033 I
want Monthly totals

I want for example C6 of the Monthly Expense Summary worksheet to be able
to
calucate a range of itemized expneses from column A of the Itemized
Expense
worksheet. Instead of just 1000 excatly, I want it to calcuate between
1000-1999. Thanks.


"Sandy Mann" wrote:

What does your data in Column J look like?

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Helpmeeee" wrote in message
...
How would I add a range instead of a single cell, A6, in the following
formula: SUMIF('Itemized
Expenses'!$J:$J,"="&($A6&TEXT(C$4,"mmm-yy")),'Itemized Expenses'!$E:$E)

I want to say for example between 1000-1999 instead of the "$A6&TEXT"








  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Quick help

It didn't work. It seems like it pulls only information from one worksheet.
When it's supposed to pull the date posted, the GL code, and the amount from
the Itemized expenses worksheet, and put the total on the Monthly summary
worksheet.

"Sandy Mann" wrote:

Not having XL2000 or better I cannot download the template but with the
codes in Column A and the expences in Column E then:

=SUMPRODUCT((A2:A20=1000)*(A2:A20<2000)*E2:E20)

will sum all codes from 1000 to 1999 inclusive.

I don't see any dates in the template preview but going by your post if the
dates are in Column C then:

=SUMPRODUCT((A2:A200=1000)*(A2:A200<2000)*(C2:C20 0=DATE(YEAR(TODAY()),1,1))*(C2:C200<=TODAY())*E2: E200)

will give you a sum of all codes 1000-1999 in the callender year to date
and:

=SUMPRODUCT((A2:A20=1000)*(A2:A20<2000)*(MONTH(C2 :C20)=10)*(YEAR(C2:C20)=2008)*E2:E20)

will give you a sum of all codes 1000-1999 for this month only

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Helpmeeee" wrote in message
...
It's weird how it's set up. It's actually the A column of the 'itemized
expenses' it has numbers ranging from 1000 to 15999+.

He's a link to the template I am trying to modify.
http://office.microsoft.com/en-us/te...CT101441121033 I
want Monthly totals

I want for example C6 of the Monthly Expense Summary worksheet to be able
to
calucate a range of itemized expneses from column A of the Itemized
Expense
worksheet. Instead of just 1000 excatly, I want it to calcuate between
1000-1999. Thanks.


"Sandy Mann" wrote:

What does your data in Column J look like?

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Helpmeeee" wrote in message
...
How would I add a range instead of a single cell, A6, in the following
formula: SUMIF('Itemized
Expenses'!$J:$J,"="&($A6&TEXT(C$4,"mmm-yy")),'Itemized Expenses'!$E:$E)

I want to say for example between 1000-1999 instead of the "$A6&TEXT"











  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Quick help

I had some luck with the following forumla.
=SUMPRODUCT(('Itemized Expenses'!A2:A20=1000)*( 'Itemized
Expenses'!A2:A20<2000)*(MONTH('Itemized Expenses'!b2:b20)=10)*(YEAR('Itemized
Expenses'!b2:b20)=2008)* 'Itemized Expenses'!E2:E20)

Is there any way to calulate for the whole column instead of 2-20? I get
#value when try. Other than that I think the formula will do. It will be a
huge pain to copy through. But it's do able. My only complaint is the 2-20.
Fix that and we have a winner.


"Helpmeeee" wrote:

It didn't work. It seems like it pulls only information from one worksheet.
When it's supposed to pull the date posted, the GL code, and the amount from
the Itemized expenses worksheet, and put the total on the Monthly summary
worksheet.

"Sandy Mann" wrote:

Not having XL2000 or better I cannot download the template but with the
codes in Column A and the expences in Column E then:

=SUMPRODUCT((A2:A20=1000)*(A2:A20<2000)*E2:E20)

will sum all codes from 1000 to 1999 inclusive.

I don't see any dates in the template preview but going by your post if the
dates are in Column C then:

=SUMPRODUCT((A2:A200=1000)*(A2:A200<2000)*(C2:C20 0=DATE(YEAR(TODAY()),1,1))*(C2:C200<=TODAY())*E2: E200)

will give you a sum of all codes 1000-1999 in the callender year to date
and:

=SUMPRODUCT((A2:A20=1000)*(A2:A20<2000)*(MONTH(C2 :C20)=10)*(YEAR(C2:C20)=2008)*E2:E20)

will give you a sum of all codes 1000-1999 for this month only

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Helpmeeee" wrote in message
...
It's weird how it's set up. It's actually the A column of the 'itemized
expenses' it has numbers ranging from 1000 to 15999+.

He's a link to the template I am trying to modify.
http://office.microsoft.com/en-us/te...CT101441121033 I
want Monthly totals

I want for example C6 of the Monthly Expense Summary worksheet to be able
to
calucate a range of itemized expneses from column A of the Itemized
Expense
worksheet. Instead of just 1000 excatly, I want it to calcuate between
1000-1999. Thanks.


"Sandy Mann" wrote:

What does your data in Column J look like?

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"Helpmeeee" wrote in message
...
How would I add a range instead of a single cell, A6, in the following
formula: SUMIF('Itemized
Expenses'!$J:$J,"="&($A6&TEXT(C$4,"mmm-yy")),'Itemized Expenses'!$E:$E)

I want to say for example between 1000-1999 instead of the "$A6&TEXT"









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
Help quick nempo Excel Worksheet Functions 3 July 20th 06 10:22 PM
I need quick help please! Sutemi Charts and Charting in Excel 1 June 8th 06 08:51 AM
Quick one(I think!), LEN & IF saybut Excel Discussion (Misc queries) 4 March 17th 06 04:25 PM
HELP QUICK I NEED TO KNOW HOW TO ... Kai Jam via OfficeKB.com Excel Discussion (Misc queries) 2 June 8th 05 03:16 AM
NEED HELP QUICK AGAIN! The_ tone Excel Discussion (Misc queries) 0 May 10th 05 07:20 PM


All times are GMT +1. The time now is 11:07 PM.

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"