
Not applicable
2009-10-09
10:35 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
SUMIF formula in Chart expression
sum(if(Quantity>=Seats),Quantity) what am I doing wrong.
I want the chart to sum for only those deals where the Quantity is greater than the variable Seats. I tried it iwth the ,0) at the end and still didn't work.
7,199 Views
3 Replies

Not applicable
2009-10-09
10:44 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Change brackets...
SUM( IF(Quantity >= Seats,Quantity))
1,177 Views

Not applicable
2009-10-15
06:00 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
will the same thing work for summing only those that are maximum date.
I have data by day for ending inventory but I want the chart to only sum the last date's data:
sum (if(Date = Max(Date),Cost)) but it doesn't work
1,177 Views

Partner - Creator
2009-10-15
09:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
dcpy, you need to use Total for Max() in this case:
sum (if(Date = Max(total Date),Cost))
BR
1,177 Views
