I have a report that returns about 200+ rows, and on one of the columns I planned on using a function that has to calculate a total quantity of a given type (i.e. how many jelly beans in inventory). Is there a way for me to execute SQL or call a function or stored procedure inside a specific cell/textbox so I can execute this function for only the current group column property?
This function takes about 3 seconds to execute once. However, if I use it in the stored procedure used for the report body, the stored procedure takes about 3 minutes because it's executing the function for each record in a specific table of the database (27000+ records).

CASEstatement in the query should do? As an alternative: have you tried using any SSRS expressions yet? – Jeroen Jan 20 at 11:17