Hi All
I’m using LibreOffice, Thank you. And I have to share a spreadsheet with Excel users.
The Excel users see functions with an extra ‘@’ sign. After removing the sign it works.
Has anyone experienced this before?
What should we do?
I know a solution is for me to use Excel, But I don’t want to.
Below function looks up a value(E2) in another sheet, then returns the value in column(C) of the matched row in the sheet(other_sheet).
=IF(ISBLANK($E2),"",INDEX($other_sheet.$C$2:$C$999,MATCH(1,($E2=$other_sheet.$A$2:$A$999),0)))
It works for me in libreoffice. But Excel users see a different function when they open the file. I tried sending .xlsx and .ods
=IF(ISBLANK($E2),"",INDEX(@other_sheet.$C$2:$C$999,MATCH(1,($E2=@other_sheet.$A$2:$A$999),0)))
Then they get a function which shows nothing.