Hi ,
I can only explain in general , since I do not know what your data in the relevant columns is.
The following statement :
IF($E$4<7,$E$4+5,$E$4-7)
gives a value of E4 + 5 as long as E4 is less than 7 , and gives a value of E4 - 7 once E4 is greater than or equal to 7. I do not know whether E4 can have negative values.
If we assume that E4 can only assume values greater than or equal to 0 , then for values :
0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ,...
the above IF statement will return values of :
5 , 6 , 7 , 8 , 9 , 10 , 11 , 0 , 1 , 2 , 3 , 4 ,...
So the part of your formula which is 43+IF($E$4<7,$E$4+5,$E$4-7) will return values of :
48 , 49 , 50 , 51 , 52 , 53 , 54 , 43 , 44 , 45 , 46 , 47 ,...
The columns referring to these numbers will be :
AV , AW , AX , AY , AZ , BA , BB , AQ , AR , AS , AT , AU ,...
What the above formula is doing is referring to the range :
AV2:AV10000 , AW2:AW10000 ,...
By itself , we cannot say what this formula is supposed to do. If you can upload the workbook , things will be clear.
Hopefully , you should be able to understand what this formula is doing.
Narayan