View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Formula to find last value in a range & then offset

try
=INDIRECT("a"&MATCH(9999,L:L))
=OFFSET(INDIRECT("l"&MATCH(9999,L:L)),0,-11)
--
Don Guillett
SalesAid Software

wrote in message
oups.com...
Hi,
I'm trying to write a formula to find the last value in a row range and
then return the value 12 columns to the left of that value. I've tried
using offset but it isn't returning the value I expect:

=OFFSET(INDEX($P168:$AA168,COUNTA($P168:$AA168)),0 ,12)

Any help would be greatly appreciated

Pete