We have an application that will periodically report information, especially counts of how many times an event occurred. It will also report how long it has been since the last report. For example, I may get a record say event E occurred 20 times since the last report, which was 40 days ago.
My question is how do I handle this in a fact table? Should I divide the count by how many days since the last report and create a record for each day in that period with the average count? So in the example above, would I create a 40 records with a count of 0.50? Or is there a better way to represent this information?
Thanks.
My question is how do I handle this in a fact table? Should I divide the count by how many days since the last report and create a record for each day in that period with the average count? So in the example above, would I create a 40 records with a count of 0.50? Or is there a better way to represent this information?
Thanks.