CelestialMind7
New Member
- Joined
- Mar 29, 2019
- Messages
- 13
Hi guys,
first time poster, long time lurker. First of all I want to thank you all for your awesome contributions. Thanks to you guys my vba skills have improved and I was able to find solutions to many questions I had in the past.
Having said that, I've searched and searched for the solutions for this but what I've found hasn't worked for me.
I've developed a very large and fairly complex reporting tool for my company that generates metrics and other reports for the management. There is one part that slows down the entire report and it's the SUMPRODUCT formula. Is there another way without doing a concatenate like helper column? SUMIFS doesn't work btw. Here's the formula:
=SUMPRODUCT(--(Consolidated!N:N=A2)*(Consolidated!K:K="Pending Action"),--(Consolidated!V:V>0),--(Consolidated!V:V<>""))
One column is doing a calculation from a raw consolidated data tab that's around 200k rows which is why it takes quite a long time to complete.
first time poster, long time lurker. First of all I want to thank you all for your awesome contributions. Thanks to you guys my vba skills have improved and I was able to find solutions to many questions I had in the past.
Having said that, I've searched and searched for the solutions for this but what I've found hasn't worked for me.
I've developed a very large and fairly complex reporting tool for my company that generates metrics and other reports for the management. There is one part that slows down the entire report and it's the SUMPRODUCT formula. Is there another way without doing a concatenate like helper column? SUMIFS doesn't work btw. Here's the formula:
=SUMPRODUCT(--(Consolidated!N:N=A2)*(Consolidated!K:K="Pending Action"),--(Consolidated!V:V>0),--(Consolidated!V:V<>""))
One column is doing a calculation from a raw consolidated data tab that's around 200k rows which is why it takes quite a long time to complete.