I want to set a Report Property Variable to a value from a Dataset using a lookup: Such as: =Lookup(Fields!HEX.Value), Fields!Title.Value, "Red", "Colors")
If I use the above, I get an error that I am referencing outside of a dataset and that I must use an aggregate. If I convert my fields to an aggregate then I get an error that Lookup does not work with an aggregate.
Use Case: I want to create variables for my reports that point to a common list of colors so that if I change my color value in the list, all of my reports get the new color without having to edit each report individually. I'm using the variable so my multiple expression in my report can refer to the variable and I don't have to embed/maintain the lookup in each expression.