Reputation: 527
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
Reputation: 20560
Just add the SUMs:
=SUM(Fields!FirstField.Value, "DatasetOne") + SUM(Fields!SecondField.Value, "DatasetTwo")
Upvotes: 1