(Using LO Version: 6.4.7.2)
I know that I can reference a cell in another sheet using something like:
=$Sheet2.C3
What if I want to apply a formula to that reference, though? How do I do that?
I tried:
=$Sheet2.C3(LEFT(A3,(LEN(A3)-18)))
but it didn’t work. Is it possible to do this or must I break it into separate steps? What is the syntax, assuming it is possible?
edit:
Seems like this works:
=LEFT($Import_tree.A3,(LEN($Import_tree.A3)-18))
I guess you have to use the full sheet + cell reference each time the cell is mentioned.
thanks,
babag