BookmarkSubscribeRSS Feed
Aditi24
Obsidian | Level 7

Hi,

Could anybody please explain the use of "Linked to" command in Frames using SAS 9.3. I want to link two radio box control in such a way that I could select only one radio button of these two radio box controls. Currently, its allowing the selection of more than one radio button if they belong to different radio box controls.(Refer attached image)


Capture.PNG
2 REPLIES 2
Rikard
Fluorite | Level 6

Do you really need to use "linked to"? Can you not apply your own logic in your SCL-code.

 

Something like (untested code): 

if radiobox1.selectedIndex > 0 then radiobox2._gray;
if radiobox2.selectedIndex > 0 then radiobox1._gray;
Aditi24
Obsidian | Level 7

@Rikard: I have already done in my scl code.. was trying to do it in a simpler way.

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
  • 932 views
  • 0 likes
  • 2 in conversation