April 20, 2009 at 12:12 pm
In access you can take two text fields and add them together as a calculated field, is this possible in ssrs?
April 20, 2009 at 12:51 pm
Yes.
Do you want to do it as an expression in the report itself or as a calculated column in the dataset?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 20, 2009 at 12:53 pm
I was looking to do it as an expression in the report itself.
April 20, 2009 at 1:05 pm
You can concatenate like this:
Fields!FieldName.Value + ", " + Fields!FieldName2.Value
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 20, 2009 at 1:12 pm
I need to be more specific. 🙂
EmpExp, Emp, and, MiscExp are all fields from the dataset.
textbox 1 = sum(EmpExp)/Count(emp)
textbox 2 = sum(MiscExp)
what I need is to have a 3rd textbox that will add textbox1 + textbox2
April 20, 2009 at 1:18 pm
You can do it 2 ways. The first way is 1 I'm sure you have considered:
(sum(EmpExp)/Count(emp)) + sum(MiscExp)
Or you can use the ReportItems collection like this:
ReportItems!TextBox1.Value + ReportItems!TextBox2.Value
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
April 20, 2009 at 2:05 pm
Thank you! the second solution is what I was looking for.
Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply