BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ojaro
SAS Employee

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:

 

https://support.sas.com/documentation/onlinedoc/qkb/31/QKBCI31/Help/qkb-help.html#qkbci-engbr/qkbci-...

 

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

1 ACCEPTED SOLUTION

Accepted Solutions
ojaro
SAS Employee

Looks like this macro was what I was after:

 

%dqputloc(enusa);

View solution in original post

2 REPLIES 2

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 737 views
  • 0 likes
  • 2 in conversation