In economic conditions, the 50 US states each has a state by state economic activity. The percent change each month can be an indication of a coming recession.
So there are 50 columns that needed to be summed across each month (row) and we need to know how many states are going into a percent change < 0. This can be shown possibly as;
only the first 8 states shown.
So is there a way to sum this number each month in a formula without typing up all 50 absolute cell references?
Thank you from an Excel novice.
So there are 50 columns that needed to be summed across each month (row) and we need to know how many states are going into a percent change < 0. This can be shown possibly as;
Excel Formula:
=SUM(COUNTIFS(B6:I6,{
"$B6-$B5/1<0","$C6-$C5/1<0","$D6-$D5/1<0","$E6-$E5/1<0","$F6-$F5/1<0","$G6-$G5/1<0","$H6-$H5/1<0","$I6-$I5/1<0",
}))
only the first 8 states shown.
So is there a way to sum this number each month in a formula without typing up all 50 absolute cell references?
Thank you from an Excel novice.