Hi all,
Is there a way to list all available standardization definitions for a SAS Quality Knowledge Base?
I am trying to use the following definition to standardize my phone numbers:
My code looks like below:
options DQLOCALE=(ENGBR);
data work.claim_telephone;
set work.claim_telephone;
phoneNumberStd = dqStandardize(phoneNumber, 'Phone (with Country Code)');
run;
I assume it is not working because I should call the definition with something else than "Phone (with Country Code)"?
Best regards,
Olli
Looks like this macro was what I was after:
%dqputloc(enusa);
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.