Morten Laustsen
Morten Laustsen

Reputation: 527

Report Builder 3.0 - Adding textboxes together

I'm currently creating a report in Report Builder 3.0. I have two textboxes containing SUMs. I want to add the values of these two textboxes together in a third textbox. How is this doable?

I need to add that I'm not working in tables or tablix.

Upvotes: 1

Views: 1222

Answers (1)

Chris Latta
Chris Latta

Reputation: 20560

Just add the SUMs:

=SUM(Fields!FirstField.Value, "DatasetOne") + SUM(Fields!SecondField.Value, "DatasetTwo")

Upvotes: 1

Related Questions