I need the amounts column to add all three values up as one whole to and not to carry the totals to sumoftotal column,
there should be only one number in the sum of total column and that is the total of all three. next i need to add the assets up and divide by the total number of assets.
SELECT [Rental Table].Number, [Rental Table].SERVICE_TAG, [Rental Table].Amounts, [Rental Table].Amounts AS SumofTotal, [Rental Table].[Asset Count]
FROM [Rental Table];
is my sql
my table reads
Amounts SumofTotal Asset Count
$5,021.00 $5,021.00 1
$900.29 $900.29 1
$1,500.00 $1,500.00 1
there should be only one number in the sum of total column and that is the total of all three. next i need to add the assets up and divide by the total number of assets.
SELECT [Rental Table].Number, [Rental Table].SERVICE_TAG, [Rental Table].Amounts, [Rental Table].Amounts AS SumofTotal, [Rental Table].[Asset Count]
FROM [Rental Table];
is my sql
my table reads
Amounts SumofTotal Asset Count
$5,021.00 $5,021.00 1
$900.29 $900.29 1
$1,500.00 $1,500.00 1