Excelllllllllllllllllllll
Board Regular
- Joined
- Jun 13, 2017
- Messages
- 108
Hello!
I have 2 of those curly bracketed formulas that I'm using to basically VLOOKUP repeat values that have different data in the cells next to them, but are slowing my file down so much macros literally take 5 times as long to run.
Can you awesome guys help me replace them with something less intensive?
Cell B3 = 1
Cell B4 = $B3+1
Cell C3 is:
Cell D3 is:
Cell E3 is:
Cell F3 is:
And then everything is copied down to Row 1,000.
Please help, MrExcel users. You're my only hope.
I have 2 of those curly bracketed formulas that I'm using to basically VLOOKUP repeat values that have different data in the cells next to them, but are slowing my file down so much macros literally take 5 times as long to run.
Can you awesome guys help me replace them with something less intensive?
Cell B3 = 1
Cell B4 = $B3+1
Cell C3 is:
Code:
=VLOOKUP($B3,Quote_Request!$A$14:$C$52,3,2)
Cell D3 is:
Code:
=IFERROR(VLOOKUP([@[Item Code]],Quote_Request!$C$14:Quote_Request!$L$52,8,FALSE),"0")
Cell E3 is:
Code:
[COLOR=#ff0000]{=IFERROR(INDEX($Q$3:$Q$50000,SMALL(IF($C3=$N$3:$N$50000,ROW($N$3:$N$50000)- MIN(ROW($N$3:$N$50000))+1,"0"), ROW()-2)),"0")}[/COLOR]
Cell F3 is:
Code:
[COLOR=#ff0000]{=IFERROR(INDEX($R$3:$R$50000,SMALL(IF($C3=$N$3:$N$50000,ROW($N$3:$N$50000)- MIN(ROW($N$3:$N$50000))+1,"0"), ROW()-2)),"0")}[/COLOR]
And then everything is copied down to Row 1,000.
Please help, MrExcel users. You're my only hope.