Hello,
The problem I’m facing is to get the last matching value from a table in a different file. Example and tests:
File 1 Table1:
A  ____ B _____--                    C
A1          1/1/20               text1
B1          2/1/20               text2
C1          3/1/20               text3
A1          4/1/20               text4
B1          5/1/20               text5
C1          6/1/20               text6
What I need:
File 2 Table 1
A ----- B — C
A1 4/1/20 text4
In MS excel i achieved that with a simple: =LOOKUP(2;1/(cell values))
But in LO I tried this and VLOOK but only to get the first result of A1 ( A1          1/1/20               text1),
The only formula working is an array with DESREF: [=DESREF(B$2;MAX(($A$2:$A$7=(valuecell)*ROW($B$2:$B$7))-2;0)
But this only work with data on the same file, when I waant to take it from another file seems like its not working…
Help please.
If more details are needed, dont worry to ask.