I have a question if you could help me.. if I have two tables with the same structure (same columns), what is the best way to patch all my records from Table A to Table B? I'm not talking about galleries, but Excel tables as database..
I got how to make it, but it's taking too much time.
RemoveIf(Table B; true);;
ForAll( Table A;
Patch( Table B;
{ Column 1 in Table A = Column 1 in Table B
Column 2 in Table A = Column 2 in Table B
(...)
}
)
)