Hi,
I gues I should make myself more clear about the problem. Consider the following table which shows the daily sales data for a store for the month of March.
date | Sales
---------------------
01 Mar $13,456
02 Mar $10,067
.
.
15 Mar NULL
16 Mar NULL
.
.
30 Mar $12,934
31 Mar $15,374
---------------------
TOTAL $392,576
---------------------
Sales$ for 15 and 16 March is missing. The total for the month ignores these missing values and considers them to be '0'. But this monthly total would then be wrong, coz there were sales made on 15 & 16 March. The only issue is that these sales haven't been recorded.
Is it okay to fill up the missing values using calculations based on the average,sales trend, etc? Or should I just ignore the missing values?
What is the common method to deal with this sort of a situation? I've searched Google and other websites but couldn't find any solution. Hope someone here can help me.