C
counter
I want to interpolate missing data. I want to run a query so that it will
return all the real and interpolated values. My rable looks like this
Week Value
1 5
3 15
4 22
5 24
And As a result I want to get
Week Value
1 5
2 10
3 15
4 22
5 24
It can be a VB function or a query.
return all the real and interpolated values. My rable looks like this
Week Value
1 5
3 15
4 22
5 24
And As a result I want to get
Week Value
1 5
2 10
3 15
4 22
5 24
It can be a VB function or a query.