Copy Values from one record to the next on (1 Viewer)

Isaac

Lifelong Learner
Local time
Today, 00:42
Joined
Mar 14, 2017
Messages
8,777
I could go either way. With large enough volumes, it might actually make sense to store the previous meter reading on the current record rather than re-querying it every time. It's all about efficiency, and sometimes, it does make more sense to store the calculation rather than re-calculate it millions of times. It just depends on the situation, the scale/volume, and how many places that 'previous' needs to be recalculated.

If, out in the real world, no datamart or data architect ever stored calculated values, then you would be hardpressed to make a useable datamart out of any enterprise with millions or billions of records - and those dashboards would run awfully slow..

I'm on board with the rule, but not when we reflexively apply it with no exception, that's all.
 

tvanstiphout

Active member
Local time
Today, 00:42
Joined
Jan 22, 2016
Messages
222
@Isaac:
> reflexively apply it with no exception
I'm not doing that. If the OP was say writing software for an energy provider the size of Texas, they would have stated that, and Texas would not be so silly to run their billing system on Access, with a rookie developer.
This is more likely the scale of a couple of apartment complexes.
Once you go up several orders of magnitude, everything you know as a mainstream Access developer goes out the door.
 

Pat Hartman

Super Moderator
Staff member
Local time
Today, 03:42
Joined
Feb 19, 2002
Messages
43,275
I offered a solution back in #11 but didn't code it. Looks like the OP is waiting for someone to code the solution for him.
 

Pat Hartman

Super Moderator
Staff member
Local time
Today, 03:42
Joined
Feb 19, 2002
Messages
43,275
The "assign values from the last record" method is only viable if the data is entered contemporaneously. If you enter a year's worth of readings at one sitting, then you need to enter the value for the first record but the other 11 can copy from the previous record. But this is not that kind of task.
 

alexsoft

New member
Local time
Today, 09:42
Joined
Feb 4, 2024
Messages
12
Thanks to all people reacted on my thread. Finally i read a liitle bit of vba and manage to do it with a command button.
Thanks anyway
 

Attachments

  • READINGS.accdb
    408 KB · Views: 30

Users who are viewing this thread

Top Bottom