Home > Net >  excel use formula results in another formula
excel use formula results in another formula

Time:10-30

I have this formula:

=UNIQUE(A1:A100)

I would like to use the results of formula =ROW(OFFSET(A1,COUNTA(A:A)-1,0)) in order to get the row number and use it in the UNIQUE formula, to get the changes dynamically.

the results should be: =UNIQUE(A1:A&*<results of =ROW(OFFSET(A1,COUNTA(A:A)-1,0))>*)

I need to use vba, or there is a way without it?

CodePudding user response:

OFFSET has a height parameter, you could use that instead directly: =UNIQUE(OFFSET(A1,0,0,COUNTA(A:A)-1,1))

  • Related