Use of the wild card???

Daniellel

Board Regular
Joined
Jun 21, 2011
Messages
242
Hi,

I need to do the sum below but my raw data is in date format with different days (14 May 2010, 16 May 2010 etc)

=SUMPRODUCT(--('Raw Data'!$G$1:$G$9549="May 2010"),--('Raw Data'!$B$1:$B$9549=$A34))

I think i need to use a wild card but i have never used this so dont know how, i need to coult all entries that have "May 2010" within the G column...

Please Help!
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi,

I need to do the sum below but my raw data is in date format with different days (14 May 2010, 16 May 2010 etc)

=SUMPRODUCT(--('Raw Data'!$G$1:$G$9549="May 2010"),--('Raw Data'!$B$1:$B$9549=$A34))

I think i need to use a wild card but i have never used this so dont know how, i need to coult all entries that have "May 2010" within the G column...

Please Help!
No need for wild card. Try rather...

=SUMPRODUCT(--(TEXT('Raw Data'!$G$1:$G$9549,"mmm yyyy")="May 2010"),--('Raw Data'!$B$1:$B$9549=$A34))
 
Upvote 0
try this
Code:
=SUMPRODUCT(--(ISNUMBER(SEARCH("May 2010",'Raw Data'!G1:G9549))),--('Raw Data'!$B$1:$B$9549=$A34))
 
Upvote 0
No need for wild card. Try rather...

=SUMPRODUCT(--(TEXT('Raw Data'!$G$1:$G$9549,"mmm yyyy")="May 2010"),--('Raw Data'!$B$1:$B$9549=$A34))

Thank you so much for this, it has returned a number of 2 but there are over 58 entries. Should i change the format of Column G as it is currently at "General"
 
Upvote 0
Thank you so much for this, it has returned a number of 2 but there are over 58 entries. Should i change the format of Column G as it is currently at "General"
'Raw Data'!$G$1:$G$9549 must house true dates.

What do you get when you would run on Raw Data, say, in K1 downwards:

=ISNUMBER(G1)
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,558
Members
452,928
Latest member
101blockchains

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top