Avatar of avgplusguy
avgplusguy
Flag for United States of America asked on

Excel Sumif #Value May need Sumproduct Part 2

I want to sum all values for each Product and its variations YTDTestLine2.xlsx
$B$8 is cell where user puts the current month m/d/yyyy
Q1:AB1 standard first of month data 1/1/2021, 2/1/2021 etc
Currently Act list Products and sometimes there variation, but are counted in summary
Currently Bud does not have variations, but may in the future

sumproduct solution works for Act tab which has either 1 or 2 rows that are summed up in Summary tab. Same logic for Bud tab produces 0 for all lookups  
Bud tab has no variation rows and therefore less rows, but may change in the future
Row 2 Product A is not budgeted and is blank, but summary does not change if I change this row to numeric 1s


=SUMPRODUCT(Act!$E$1:$AB$23,(LEFT(Act!$D$1:$D$23,LEN($D17))=$D17)*(Act!$E$1:$AB$1<=$B$8)*(Act!$E$1:$AB$1>=DATE(YEAR($B$8),1,1)))    =  57,781

 =SUMPRODUCT(Bud!$E$1:$AB$17,(LEFT(Bud!$D$1:$D$17,LEN($D17))=$D17)*(Bud!$E$1:$AB$1<=$B$8)*(Bud!$E$1:$AB$1>=DATE(YEAR($B$8),1,1)))             =  0
Instead of 52,117
Microsoft ExcelMicrosoft Office

Avatar of undefined
Last Comment
byundt

8/22/2022 - Mon
byundt

In Act, the values in row 1 are dates formatted yyyymm, while in Bud they are text that looks like yyyymm.

One cure is to convert row 1 on Bud to dates formatted the way you want. The other is to change the SUMPRODUCT formula. What's your preference?
byundt

This workbook has the values in Bud line 1 stored as dates formatted yyyymm.

TestLine2.xlsx
ASKER CERTIFIED SOLUTION
byundt

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Your help has saved me hundreds of hours of internet surfing.
fblack61