Hi ONLYOFFICE Community,
I am using ONLYOFFICE Docs 9.1 integrated with eXo Platform 7.1.
I would like to ask about using VLOOKUP between two separate workbook files stored in eXo Platform.
I have two files:
-
Data_Transaksi_VLOOKUP.xlsx
This is the transaction workbook where I want to write theVLOOKUPformula. -
MasterProduk.xlsx
This is the master data workbook that contains product codes, product names, categories, prices, and suppliers.
In Microsoft Excel, I can type a formula like =VLOOKUP(, then switch to another workbook, select the lookup range directly, and Excel automatically inserts the external workbook reference into the formula.
I tried to do the same in ONLYOFFICE Docs 9.1 Online integrated with eXo Platform 7.1, but I could not select the range from another workbook directly while writing the formula.
I also tried using an external reference formula like this:
=VLOOKUP(C4,'[MasterProduk.xlsx]MasterProduk'!$A$1:$F$100,2,FALSE)
However, it does not work as expected and sometimes returns an error.
The workaround that seems to work is:
-
Open the master workbook.
-
Copy the master data range.
-
Paste it into the transaction workbook using Paste Link.
-
Then use
VLOOKUPagainst the linked range inside the transaction workbook.
For example:
=VLOOKUP(C4,$J$8:$N$23,2,0)
This works, but it is not very efficient because I need to insert the master data as a linked range first.
My questions are:
-
Is it possible in ONLYOFFICE Docs 9.1 integrated with eXo Platform 7.1 to use
VLOOKUPbetween two separate workbooks by directly selecting the source workbook/range, similar to Microsoft Excel? -
If yes, what are the exact steps?
-
If not, is using Paste Link the only supported method for using external workbook data in formulas?
-
Does this feature require additional implementation from the eXo Platform / ONLYOFFICE integration side, such as support for external reference data?
-
Is direct range selection from another workbook while writing formulas supported in ONLYOFFICE Docs 9.1, or is it planned for a future version?
Thank you