0 Variables and Dynamic Data Blocks 2 Cody Tindall posted 9 Years Ago If I define a custom variable in an sql query and store a value in it, how would I display that variable using the formatted output section of a dynamic data block. How would I call the variable? Query example: DECLARE @Deposit INT SET @Deposit = (SELECT SUM(Amount) FROM [FinancialTransactionDetail]) SELECT @Deposit
Cody Tindall 9 years ago Thanks for the response, while this would work in the example I posted, I really need to be able to call custom variables in the formatted output section.