I have a named ranges on file A and I need to use them in file B.
inventory = $Inv.A2:K1001
inv_cols = $Inv.A1:K1
...etc
When I need to use them in the same file I can just call inventory/inv_cols...etc
but in another file, do I need to prefix every named ranges in formulas with file:///...
?? Like this?
=LET(col, (file:///...inv_cols="Product")*(file:///...inv_cols="Price")*(file:///...inv_cols="Id"), formula...)