Using classic ASP/VBScript with SQL back-end,
I have a dataset like:
Month F1 F2 F3
Month1 100 110 100
Month2 105 110 100
Month3 111 102
Month4 110 112 102
I read these values into an array and then graph them through OWC -- but my problem is that the array for F1(3) sees a null value -- and then the dataset collapses and my data for graphing looks like this:
Month F1 F2 F3
Month1 100 110 100
Month2 105 110 100
Month3 110 111 102
Month4 112 102
I need to be able to set that value (Month3,F1) to a null....zero won't cut it because I don't want to graph a zero if the data is missing....
Any ideas?
Please let me know if I can provide additional data.
Thanks.
I have a dataset like:
Month F1 F2 F3
Month1 100 110 100
Month2 105 110 100
Month3 111 102
Month4 110 112 102
I read these values into an array and then graph them through OWC -- but my problem is that the array for F1(3) sees a null value -- and then the dataset collapses and my data for graphing looks like this:
Month F1 F2 F3
Month1 100 110 100
Month2 105 110 100
Month3 110 111 102
Month4 112 102
I need to be able to set that value (Month3,F1) to a null....zero won't cut it because I don't want to graph a zero if the data is missing....
Any ideas?
Please let me know if I can provide additional data.
Thanks.