Hello,
I have the following scenario,
- Radio buttons that represents Gender (M,F,D)
- SharePoint List with 3 Columns (Job M, Job F, Job D)
P.S. in German language the noun changes based on gender for example
M: Mitarbeiter (Worker)
F: Mitarbeiterin (Worker) ...etc
Therefore, I want to update the drop down Items based on Radio button selection.
I tried if statement for drop down items, but it didn't work.
I also tried creating a collection based on the Radio selection
If(Self.Selected.Value= "M",
ClearCollect(colJobs,
{Job:SPLIST.JobM}),
If(Self.Selected.Value= "F",
ClearCollect(colJobs,
{Job:SPLIST.JobF}),
If(Self.Selected.Value= "D",
ClearCollect(colJobs,
{Job:SPLIST.JobD}),
Blank()))))
in Drop down items I placed colJobs or colJobs.Job however that also didnt work.
Any suggestions?