Hey,
I can't figure the difference between these two functions:
%BQUOTE and %NRBQUOTE.
In the book they said the later can in addtion mask & and % But I used the former with no error using SAS Version 9.1
options symbolgen;
%let text=%BQUOTE(Joan's & % Report);
%put &text;
%let text=%nrbquote(Joan's & Report);
%put &text;