Feb 21 2023 04:31 AM
Hello!
Please tell me, which function should I use to automatically get data from the previous rows with the same direction?
Feb 21 2023 05:23 AM
Feb 21 2023 05:40 AM - edited Feb 21 2023 05:54 AM
Hi Sergei,
Wow! Thanks for your super-fast reply!
It works!!
But how to "connect" this mechanism with columns: "K;L;M;N" so they would "update/copy" previous inputs too?
Feb 21 2023 05:58 AM
SolutionYou may repeat formula in each column, e.g. in K
=XLOOKUP(D26&F26&G26, D:D&F:F&G:G, K:K)
or use in K
=XLOOKUP(D26&F26&G26, D:D&F:F&G:G, K:N)
but cells to the right shall be empty since the latest returns spill.
Feb 21 2023 06:42 AM
Feb 21 2023 07:34 AM
@Janis_K1 , you are welcome.
As a comment, in general better to use not entire columns like K:K, but some ranges like $K$2:$K$1000, but all of them shall be of the same size. That's in case of performance issues.