Hello..
I have got 2 queries both of which have got count functions which count different customers, these are based against a month. I have created a relationship against them two tables and put the two count fields together matching the fields using the month.
This all works fine and the data is visible n example is shown below.
Month -----Cust-------Cust Misc
Jan----------10----------1
Feb--------- 2
March-------------------3
As you can see some of them fields have no number against them. Which is were the problem occurs becuase im tryin to sum up both columns so the total of 'Jan' would be '11' and 'Feb' would be '2'. This works fine becuase Jan as values in both fields problem occurs when one of the fields dont hav a value in place.
I have tried using Nz function which places zeros in the relevant places but for lets say 'March' the answer would be '0' rather than 3.
Any help will be much appreciated.
Kind regards
Tak
I have got 2 queries both of which have got count functions which count different customers, these are based against a month. I have created a relationship against them two tables and put the two count fields together matching the fields using the month.
This all works fine and the data is visible n example is shown below.
Month -----Cust-------Cust Misc
Jan----------10----------1
Feb--------- 2
March-------------------3
As you can see some of them fields have no number against them. Which is were the problem occurs becuase im tryin to sum up both columns so the total of 'Jan' would be '11' and 'Feb' would be '2'. This works fine becuase Jan as values in both fields problem occurs when one of the fields dont hav a value in place.
I have tried using Nz function which places zeros in the relevant places but for lets say 'March' the answer would be '0' rather than 3.
Any help will be much appreciated.
Kind regards
Tak
Comment