- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 01-17-2017 07:40 AM
(2351 views)
I want to create a random 32 digit number containing both characters and numbers like 4b212e34-056f-413a-8dd8-d04e9b4c7756.
How can I do this in SAS?
Thanks in advance.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I actually looked it up online and found a function that finds GUIDs.
data wastedGuids;
do x=1 to 10;
guid = uuidgen();
output;
end;
run;
Thanks.