VB Script based on combobox selection

G

gmac

Hi

I have a combobox with various items like 2005, 2006, 2005 Q1,
2005Q2, Business. Combobox is called Combobox1 and in Sheet5

I have a common VB code .

ActiveSheet.Evaluate("SUM(IF($CU$7:$CU$4978=2006 ,IF($K$7:$K
$4978=""Accept-Create New Project"",$G$7:$G$4978,0),0))")

In the above code I have hardcoded it for 2006. But I need to change
the 2006 with what ever user selects in combobox.
 
C

Charles Chickering

ActiveSheet.Evaluate("SUM(IF($CU$7:$CU$4978=" & ComboBox1.Value & _
" ,IF($K$7:$K$4978=""Accept-Create New Project"",$G$7:$G$4978,0),0))")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top