It is very straight forward and easy to use.
However, I've managed to make a mistake and I assume have the same problem if you got to that page.
The Error
At firs, here is the error I've got when I tried to use Lookup function in SSRS:
The expression used for the calculated field 'ProductName' includes an aggregate, RowNumber, RunningValue, Previous or lookup function. Aggregate, RowNumber, RunningValue, Previous and lookup functions cannot be used in calculated field expressions.
How did I get there?
At first, I've created two data sets "WorkOrders" and "Products"
Then I wanted to include "Product Name" into my "Work Order Report"
Here is How I've done it:
The WRONG WAY
(that is how it shouldn't been done)
Obviously, if I use a function I thought I have to use it in a calculated field
But That is Wrong
You should do it the right way:
The RIGHT WAY
That is not obvious, but you have to use "Query Field" to use the Lookup function:
Then you just have to specify New Field's name and insert a formula.
In my case I used following:
=Lookup(Fields!ProductID.Value, Fields!ProductID.Value, Fields!Name.Value, "Products")
That worked very well for me and I hope you will struggle less by reading this.
Good Luck