Function equivalent to SUM() for multiplication in SQL Reporting
问题 I'm looking for a function or solution to the following: For the chart in SQL Reporting i need to multiply values from a Column A. For summation i would use =SUM(COLUMN_A) for the chart. But what can i use for multiplication - i was not able to find a solution so far? Currently i am calculating the value of the stacked column as following: =ROUND(SUM(Fields!Value_Is.Value)/SUM(Fields!StartValue.Value),3) Instead of SUM i need something to multiply the values. Something like that: =ROUND