N
Niall
I am trying to find the sum of two columns that need to
be multiplied together.
For example
Column 1 Column 2
5 4
2 1
3 6
The summed amount should be 40.
I am attempting to do this by adding a third column that
multiplies the first two columns together, and changing
the column 'Total' type to 'Sum', but for some reason,
the number it generates is much larger than it should
be. Does anyone know why this is?
Note: To sum the two column's together, I have an IIF
statement that filters out dates older than a year (i.e.
if Order_Date > 1 year ago, then print 0, else multiply
Column 1 and Column 2) - that could be causing problems...
be multiplied together.
For example
Column 1 Column 2
5 4
2 1
3 6
The summed amount should be 40.
I am attempting to do this by adding a third column that
multiplies the first two columns together, and changing
the column 'Total' type to 'Sum', but for some reason,
the number it generates is much larger than it should
be. Does anyone know why this is?
Note: To sum the two column's together, I have an IIF
statement that filters out dates older than a year (i.e.
if Order_Date > 1 year ago, then print 0, else multiply
Column 1 and Column 2) - that could be causing problems...