Iโm creating a MoveIn/MoveOut Inspection app, and would like it to work like this:
Iโve seen various questions sort of like this previously but no good answers and am hoping something has changed or Iโve missed something. Itโs easy to copy and edit a single row, but I canโt figure out how to do the same with its children.
Not possible from the app itself.
Hi @RLCDProperties Have you had a look at the sample Apps โProperty Lease Managerโ and โMove in Move out checklistsโ ?
Have you considered the following alternatives.
Each room record might contain both MoveIn fields and MoveOut fields. You would fill in the former fields during Move In, and the later fields during Move Out.
Another, and likely better, possibility is for each Room record to have a child MoveIn record and a child MoveOut record. All common room data would be stored in the Room record. MoveIn and MoveOut specific information would be stored in the child MoveIn and MoveOut records.
I suggest these alternatives because one of the most important principles of database design is to avoid replicating data. Every โfactโ should be stored in exactly one place (i.e. one record). That way, if you need to update the โfactโ later, you only need to make the change in exactly one record. If you replicate the same โfactโ in two or more records, you need to update every replica of that โfactโ to keep your data consistent.
We see lots of questions about making copies of data. Whenever you see a question like this, you should immediately ask why the design requires this. In the vast majority of cases, it is because the design is violating the important principle of keeping each โfactโ in only one place.
User | Count |
---|---|
16 | |
13 | |
8 | |
7 | |
4 |