PC Review


Reply
 
 
Roger
Guest
Posts: n/a
 
      11th Aug 2009
The function below works
Answer = .SumIfs(Range("B1:B100"),Range("A1:A100"),">300")

Criteria Column Column To Sum
£233.56 £5000
£266.89 £6000
£455.91 £8000
etc

Answer = £6000

How would I write the criteria to sum entries where the adjacent value ends
in 88p or more - I have tried many different ways using wils cards etc but
none of them work. Thankyou in anticipation
 
Reply With Quote
 
 
 
 
Sam Wilson
Guest
Posts: n/a
 
      11th Aug 2009
Type this:

=SUM(IF(A1:A100-INT(A1:A100)>0.88,B1:B100,0))

but use Ctrl + Shift + Enter rather than just enter after you've typed it.

Sam

"Roger" wrote:

> The function below works
> Answer = .SumIfs(Range("B1:B100"),Range("A1:A100"),">300")
>
> Criteria Column Column To Sum
> £233.56 £5000
> £266.89 £6000
> £455.91 £8000
> etc
>
> Answer = £6000
>
> How would I write the criteria to sum entries where the adjacent value ends
> in 88p or more - I have tried many different ways using wils cards etc but
> none of them work. Thankyou in anticipation

 
Reply With Quote
 
Jacob Skaria
Guest
Posts: n/a
 
      11th Aug 2009
Hi Roger

Try the below....But what about whole numbers...eg: 266.00

Criteria Column Column To Sum
$233.50 $5,000.00
$266.88 $6,000.00
$455.88 $8,000.00

=SUMPRODUCT(--(TEXT(MOD(A2:A4,1)*100,"00")+0>=88),B2:B4)

If this post helps click Yes
---------------
Jacob Skaria


"Roger" wrote:

> The function below works
> Answer = .SumIfs(Range("B1:B100"),Range("A1:A100"),">300")
>
> Criteria Column Column To Sum
> £233.56 £5000
> £266.89 £6000
> £455.91 £8000
> etc
>
> Answer = £6000
>
> How would I write the criteria to sum entries where the adjacent value ends
> in 88p or more - I have tried many different ways using wils cards etc but
> none of them work. Thankyou in anticipation

 
Reply With Quote
 
Jacob Skaria
Guest
Posts: n/a
 
      11th Aug 2009
If you mean the entries in Col A are >=0.88 then try

=SUMPRODUCT(--(A2:A4>=0.88),B2:B4)

If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

> Hi Roger
>
> Try the below....But what about whole numbers...eg: 266.00
>
> Criteria Column Column To Sum
> $233.50 $5,000.00
> $266.88 $6,000.00
> $455.88 $8,000.00
>
> =SUMPRODUCT(--(TEXT(MOD(A2:A4,1)*100,"00")+0>=88),B2:B4)
>
> If this post helps click Yes
> ---------------
> Jacob Skaria
>
>
> "Roger" wrote:
>
> > The function below works
> > Answer = .SumIfs(Range("B1:B100"),Range("A1:A100"),">300")
> >
> > Criteria Column Column To Sum
> > £233.56 £5000
> > £266.89 £6000
> > £455.91 £8000
> > etc
> >
> > Answer = £6000
> >
> > How would I write the criteria to sum entries where the adjacent value ends
> > in 88p or more - I have tried many different ways using wils cards etc but
> > none of them work. Thankyou in anticipation

 
Reply With Quote
 
Roger
Guest
Posts: n/a
 
      11th Aug 2009
Thankyou for your suggestions - I will have a play

"Roger" wrote:

> The function below works
> Answer = .SumIfs(Range("B1:B100"),Range("A1:A100"),">300")
>
> Criteria Column Column To Sum
> £233.56 £5000
> £266.89 £6000
> £455.91 £8000
> etc
>
> Answer = £6000
>
> How would I write the criteria to sum entries where the adjacent value ends
> in 88p or more - I have tried many different ways using wils cards etc but
> none of them work. Thankyou in anticipation

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to stop Access re-arranging query criteria onto multiple criteria lines for OR condition Chrisso Microsoft Access 3 9th Nov 2007 11:50 AM
Query with criteria for long data type but criteria is double =?Utf-8?B?THluZGE=?= Microsoft Access Queries 1 30th Jan 2007 01:24 AM
Selection.AutoFilter Field / Criteria => criteria sometimes non-existing on worksheet markx Microsoft Excel Programming 1 24th Nov 2006 02:52 PM
Counting Cells with multiple criteria.One criteria supporting wild =?Utf-8?B?QXpoYXIgQXJhaW4=?= Microsoft Excel Worksheet Functions 1 12th Jan 2005 08:33 AM
Re: have input box. Need criteria entered to refer to cond. format criteria Bob Phillips Microsoft Excel Programming 0 1st Mar 2004 08:17 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:38 AM.