Just to add something more: nchar - adds trailing spaces to the data. nvarchar - does not add trailing spaces to the data.
So, if you are going to filter your dataset by an 'nchar' field, you may want to use RTRIM to remove the spaces. E.g. nchar(10) field called BRAND stores the word NIKE. It adds 6 spaces to the right of the word. So, when filtering, the expression should read: RTRIM(Fields!BRAND.Value) = "NIKE"
Hope this helps someone out there because I was struggling with it for a bit just now!