Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a listing of salary figures for my organization. Several positions are
currently vacant, but the salary needed to fill the position is still listed. How do I sum the range of figures to EXCLUDE the figures on rows where the A column has VACANT typed in it? Thank you for your help. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Maybe this:
=SUMIF(A1:A100,"<Vacant",B1:B100) -- Biff Microsoft Excel MVP "ibhavn" wrote in message ... I have a listing of salary figures for my organization. Several positions are currently vacant, but the salary needed to fill the position is still listed. How do I sum the range of figures to EXCLUDE the figures on rows where the A column has VACANT typed in it? Thank you for your help. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Wonderful! That worked, now if I just understood why it worked. Thank you
for your prompt response! "T. Valko" wrote: Maybe this: =SUMIF(A1:A100,"<Vacant",B1:B100) -- Biff Microsoft Excel MVP "ibhavn" wrote in message ... I have a listing of salary figures for my organization. Several positions are currently vacant, but the salary needed to fill the position is still listed. How do I sum the range of figures to EXCLUDE the figures on rows where the A column has VACANT typed in it? Thank you for your help. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Sep 5, 1:59 pm, ibhavn wrote:
Wonderful! That worked, now if I just understood why it worked. Thank you for your prompt response! Because nobody bothered to put the $B!b(B sign into ANY generation of ASCII, and Microsoft thought it would be cool to ignore it, too, we use < to mean "not equal". Or you could say it, "either less than or greater than". So for the formula: you are summing the B column cells if the corresponding A column cell is NOT "Vacant". |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome!
=SUMIF(A1:A100,"<Vacant",B1:B100) < means "is not equal to" So in plain English, sum the cells in column B where the cells in column A is not equal to vacant. -- Biff Microsoft Excel MVP "ibhavn" wrote in message ... Wonderful! That worked, now if I just understood why it worked. Thank you for your prompt response! "T. Valko" wrote: Maybe this: =SUMIF(A1:A100,"<Vacant",B1:B100) -- Biff Microsoft Excel MVP "ibhavn" wrote in message ... I have a listing of salary figures for my organization. Several positions are currently vacant, but the salary needed to fill the position is still listed. How do I sum the range of figures to EXCLUDE the figures on rows where the A column has VACANT typed in it? Thank you for your help. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In case you decide to move the text vacant to a cell (say C1) and want to change
the formula to point to that cell. You could use: =SUMIF(A1:A100,"<"&c1,B1:B100) In fact, you could even do this: =SUMIF(A1:A100,"<"&"Vacant",B1:B100) ibhavn wrote: Wonderful! That worked, now if I just understood why it worked. Thank you for your prompt response! "T. Valko" wrote: Maybe this: =SUMIF(A1:A100,"<Vacant",B1:B100) -- Biff Microsoft Excel MVP "ibhavn" wrote in message ... I have a listing of salary figures for my organization. Several positions are currently vacant, but the salary needed to fill the position is still listed. How do I sum the range of figures to EXCLUDE the figures on rows where the A column has VACANT typed in it? Thank you for your help. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SumIF and CountIF formulas | Excel Discussion (Misc queries) | |||
Nesting SUMIF formulas | Excel Worksheet Functions | |||
SumIf formulas. | Excel Discussion (Misc queries) | |||
sumif and array formulas | Excel Worksheet Functions | |||
formulas SUMIF & DSUM | Excel Discussion (Misc queries) |