LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default vba sumif and vlookup codes

I need help.

I have this formula:

=IF(ISERROR(VLOOKUP(IF(C3="",VLOOKUP(D3,Data!B:O,F 3+2,0),IF(D3="",VLOOKUP(C3,Data!B:O,F3+2,0))),$O$3 :$O$114,1,0)),H3&"C0MISCELLANEOUS",H3&(VLOOKUP(IF( C3="",VLOOKUP(D3,Data!B:O,F3+2,0),IF(D3="",VLOOKUP (C3,Data!B:O,F3+2,0))),$O$3:$O$114,1,0)))

And I tried using this code to run instead of the formula above because the
formula takes about 10 minute to run for worksheets, but it gives me #Value!
at row 100.

Sub Run_Data()
Dim iLastRow As Long
Dim i As Long

With Sheets("FBL3N_1")
iLastRow = .Cells(.Rows.Count, "F").End(xlUp).Row
For i = 3 To iLastRow 'iLastRow to 1 Step -1
.Cells(i, "K").Formula = Evaluate("=IF(ISERROR(VLOOKUP(IF(C" & i
& "="""",VLOOKUP(" & _
"D" & i & ",Data!B:O,F3+2,0),IF(D" & i & "="""",VLOOKUP(" &
"C" & i & ",Data!B:O,F3+2,0))),$O$3:$O$114,1,0)),H" & i & "&
""C0MISCELLANEOUS"",H" & i & _
"&(VLOOKUP(IF(C" & i & "="""",VLOOKUP(D" & i &
",Data!B:O,F3+2,0),IF(" & "D" & i & "="""",VLOOKUP(C" & i &
",Data!B:O,F3+2,0))),$O$3:$O$114,1,0)))")
Next i
End With
End Sub


And how would I write a VBA Code to run from F7 to DN71 for the formula below:
I dont want the formulas in the cell. I just want values. Formulas take too
long.

=SUMIF(LZL3N_1!$K$3:$K$43691,Summary!$A7&Summary!F $1,LZL3N_1!$I$3:$I$43691)+SUMIF(LZL3N_2!$K$3:$K$65 536,Summary!$A7&Summary!F$1,LZL3N_2!$I$3:$I$65536)

Thanks,
Xrull

 
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
Sumif or vlookup dejavu34 Excel Worksheet Functions 1 January 31st 12 02:45 AM
vlookup - matching where codes are not exact reesrob Excel Discussion (Misc queries) 2 November 18th 07 05:12 PM
vlookup with zip codes - not working - frustrated chrissyb Excel Worksheet Functions 3 April 10th 07 04:43 AM
Vlookup using letter and numeric codes LW_Greeney Excel Discussion (Misc queries) 2 May 23rd 06 05:24 PM
Vlookup w/multiple codes Whnke Excel Worksheet Functions 2 March 12th 06 08:09 PM


All times are GMT +1. The time now is 11: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"