Howdy!
Funny question - If I have sales data for every day of the month - and I would like to see how many days are between sales that are greater than 100$ - how would I set this up?
Here's the table in question:
Month___________day_in_month________
_______1___2___3___4___5...___30___31
---------------------------------------------
July___75__15_115__50_125___10___67
Aug___175_35__15__50_105___38___73
So in July I had an interval of 2, 1, ... etc
And in Aug I had an interval of 0, 3, ... etc
I figure I'll need a module that goes through each field [1],[2],..[31] and checks if the value is >100. If it's >100 I'll need to compare it to the next value.. and so on..
Possible? Probable?
Thanks!
Nowanda
Funny question - If I have sales data for every day of the month - and I would like to see how many days are between sales that are greater than 100$ - how would I set this up?
Here's the table in question:
Month___________day_in_month________
_______1___2___3___4___5...___30___31
---------------------------------------------
July___75__15_115__50_125___10___67
Aug___175_35__15__50_105___38___73
So in July I had an interval of 2, 1, ... etc
And in Aug I had an interval of 0, 3, ... etc
I figure I'll need a module that goes through each field [1],[2],..[31] and checks if the value is >100. If it's >100 I'll need to compare it to the next value.. and so on..
Possible? Probable?
Thanks!
Nowanda