Reputation: 1
This is the code I am trying to execute
IF [Category]= [Parameter ]. [Category] THEN [Sales] END
getting an error :
" expected THEN to match IF at character 0"
please help.
Upvotes: 0
Views: 196
Reputation: 11896
You probably need [Parameters.Category] instead
[Parameters.Category]
Upvotes: 1