Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to get a running sum from a list of VLookups where some of the
values have yet to be entered. Therefor some of the cells show as #N/A and the sum formula SUM(B2:B15) is not working. How can I fix this. (just in case not clear b2 is 5:47, B3 is 5:52 B4:b15 are currently #N/A but will change on later dates) -- Thanks so much Lois - unskilled user |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() hi =SUMIF(B2:B15,"<#N/A") Mike On Thu, 22 Jan 2009 13:01:01 -0800, Lois wrote: I am trying to get a running sum from a list of VLookups where some of the values have yet to be entered. Therefor some of the cells show as #N/A and the sum formula SUM(B2:B15) is not working. How can I fix this. (just in case not clear b2 is 5:47, B3 is 5:52 B4:b15 are currently #N/A but will change on later dates) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Type (or paste) this formula in the cell you want the result to be in
=SUM(IF(ISERROR(B2:B15),0,B2:B15)) and then press CTRL-SHIFT-ENTER Ideally you should have your VLOOKUP wrapped in ISNA =IF(ISNA(VLOOKUP...),"",VLOOKUP...) "Lois" wrote: I am trying to get a running sum from a list of VLookups where some of the values have yet to be entered. Therefor some of the cells show as #N/A and the sum formula SUM(B2:B15) is not working. How can I fix this. (just in case not clear b2 is 5:47, B3 is 5:52 B4:b15 are currently #N/A but will change on later dates) -- Thanks so much Lois - unskilled user |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Best method is to get rid of the #N/A from the cells by error-checking the
VLOOKUP formulas. =IF(ISNA(vlookup formula)),"",vlookup formula)) Example of above................... =IF(ISNA(VLOOKUP(G4,$A$1:$F$31,2,FALSE)),"",VLOOKU P(G4,$A$1:$F$31,2,FALSE)) Gord Dibben MS Excel MVP On Thu, 22 Jan 2009 13:01:01 -0800, Lois wrote: I am trying to get a running sum from a list of VLookups where some of the values have yet to be entered. Therefor some of the cells show as #N/A and the sum formula SUM(B2:B15) is not working. How can I fix this. (just in case not clear b2 is 5:47, B3 is 5:52 B4:b15 are currently #N/A but will change on later dates) |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This will ignore *all* errors:
=SUMIF(B2:B15,"<1E100") -- Biff Microsoft Excel MVP "Lois" wrote in message ... I am trying to get a running sum from a list of VLookups where some of the values have yet to be entered. Therefor some of the cells show as #N/A and the sum formula SUM(B2:B15) is not working. How can I fix this. (just in case not clear b2 is 5:47, B3 is 5:52 B4:b15 are currently #N/A but will change on later dates) -- Thanks so much Lois - unskilled user |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
RUNNING TOTALS...FORMULA NEEDED | Excel Worksheet Functions | |||
Maybe an array is needed? | Excel Worksheet Functions | |||
Running total array? | Excel Worksheet Functions | |||
Formula Needed to Compare Dates and return a running total | Excel Worksheet Functions | |||
Urgent Help needed - I need to stop a process that is running forever in Excel | Excel Discussion (Misc queries) |