Link to home
Start Free TrialLog in
Avatar of Jenedge73
Jenedge73Flag for Afghanistan

asked on

Offset current cell

Morning experts.  Does anyone know how to reference the current cell minus 3 columns minus 1 row?
Thanks
Avatar of NBVC
NBVC
Flag of Canada image

=OFFSET(X5,-1,-3) where formula is in X5.. the current row
Avatar of Jenedge73

ASKER

yes, but I need to put it in the current formula so that I always reference the (-1,-3)
not sure what you mean... can you give example of "current formula" and what you need?
IFERROR(SUMIF(INDIRECT("'"&TEXT($D$21,"dd-mmm-yyyy")&"'!$A$3:$A$14"),H$3,INDEX(INDIRECT("'"&TEXT($D$21,"dd-mmm-yyyy")&"'!$A$3:$Q$14"),,MATCH($D22,INDIRECT("'"&TEXT($D$5,"dd-mmm-yyyy")&"'!$A$3:$Q$3"),0))),0)

This formula is in H22 and I want to always one row up and 3 rows left.  in this instance I would return D1
IFERROR(SUMIF(INDIRECT("'"&TEXT($D$21,"dd-mmm-yyyy")&"'!$A$3:$A$14"),H$3,INDEX(INDIRECT("'"&TEXT($D$21,"dd-mmm-yyyy")&"'!$A$3:$Q$14"),,MATCH($D22,INDIRECT("'"&TEXT($D$5,"dd-mmm-yyyy")&"'!$A$3:$Q$3"),0))),0)

This formula is in H22 and I want to always one row up and 3 rows left.  in this instance I would return D21
What do you mean by this instance would return D1?  Where?
ASKER CERTIFIED SOLUTION
Avatar of NBVC
NBVC
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
that's exactly it.
Thanks
great