Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Junior Member
 
Posts: 2
Default [SOLVED] using the SUMIF function

Hello
I Have various data in column "E", and would like to put the result in each cell of column "F"

Sub teste()
Dim vResultado
Dim LR As Long
LR = Range("E" & Rows.Count).End(xlDown).Row
vResultado = Application.SumIf(Range("A2:A3000"), Range("E3"), Range("B2:B3000"))
Cells(LR + 1) = vResultado
End Sub


does anyone know how to do?

Thank you!

Last edited by elsg : May 23rd 12 at 01:43 AM
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 621
Default using the SUMIF function

Sub teste()
Dim vResultado
Dim LR As Long
LR = Range("E" & Rows.Count).End(xlUp).Row
MsgBox LR
vResultado =
Application.WorksheetFunction.SumIf(Range("A2:A300 0"), _
Range("E3"), Range("B2:B3000"))
MsgBox vResultado
Range("E" & LR + 1) = vResultado
End Sub


Gord

On Tue, 22 May 2012 10:22:48 +0000, elsg
wrote:


Hello
I Have various data in column "E", and would like to put the result in
each cell of column "F"

Sub teste()
Dim vResultado
Dim LR As Long
LR = Range("E" & Rows.Count).End(xlDown).Row
vResultado = Application.SumIf(Range("A2:A3000"), Range("E3"),
Range("B2:B3000"))
Cells(LR + 1) = vResultado
End Sub


does anyone know how to do?

Thank you!

  #3   Report Post  
Junior Member
 
Posts: 2
Default

Hi.

i'm solved this way.

Sub Test()
Dim lasta, laste As Long
Dim nam, nam1, c As Range
lasta = Cells(Rows.Count, 1).End(xlUp).Row
Set nam = Range("a1:a" & lasta)
nam.Copy [e1]
nam.Offset(0, 4).RemoveDuplicates Columns:=1, Header:=xlYes
laste = Cells(Rows.Count, 5).End(xlUp).Row
Set nam1 = Range("e2:e" & laste)
For Each c In nam1
c.Offset(, 1) = Application.WorksheetFunction.SumIf(nam, c, nam.Offset(0, 1))
Next

End Sub

Thank you!!!
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
How to nest a left function within a sumif function? LisaK Excel Worksheet Functions 2 April 23rd 23 11:46 AM
How do I use the TODAY function with the SUMIF function? Lisa B. Excel Worksheet Functions 2 September 30th 05 08:51 PM
SUMIF Function Inside SUMPRODUCT Function Abdul Waheed Excel Worksheet Functions 17 September 19th 05 04:24 PM
Can SUMIF function include AND function ShaneS Excel Worksheet Functions 1 May 17th 05 03:24 AM
SUMIF - Range name to used for the "sum_range" portion of a SUMIF function Oscar Excel Worksheet Functions 2 January 11th 05 11:01 PM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"