I have a report structured as:
Org
Project
Version
Each of Org and Project are groups. Version is the detail row and there can be multiple Versions per Project. I need the aggregates at the Project level to be the First value of Version. I tried using "First(Fields!name.value)" and I get first in the dataset scope. I tried "First(Fields!name.value,"table1_project")" where table1_project is the name of the Project group, and I get an error saying the scope parameter is invalid.
Is there a way to scope this so I get the "first" value of Version in the Project row?
SSRS 2012 with VS 2012
This is what the report looks like:
These are the groups:
So this worked:
=First(Fields!baseline.Value,"table1_project")
which is what I tried a dozen times before I posted the original question. I have no idea what happened but it's working now.