View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default Wildcard in SumProduct

If it always begins with FA-, try it this way:

=SumProduct((LEFT($B$49:$BJ$55,3)="FA-")*IsNumber($F$49:$BN$55),$F
$49:$BN$55)

Hope this helps.

Pete

On Apr 11, 12:42*pm, Judy L wrote:
In my spreadsheet I have the following formula to sum values but it won't
work when I try to use a wildcard.
=SumProduct(($B$49:$BJ$55="FA-*)*IsNumber($F$49:$BN$55),$F$49:$BN$55)

The formula works if I use one of the actual categories (ie: FA-1)
But I have several FA-1 through FA-10 and FA-PH.

Any help would be greatly appreciated,

Thank you