How can I make a dropdown option to auto sele...

How can I make a dropdown option to auto select? there’s only one option but I need it to be auto selected so it can jump to the next dropdown.

0 6 360
6 REPLIES 6

@Edgar_Munoz you can assign an Initial Value

@Levent_KULACOGLU and how can I do that? I tried ANY(TableName[FieldName]) but didn’t work

ANY(SELECT(TableName[ColumnName],TRUE)) should work

Or just write that value like “Option” into the initial value field.

@Aleksi_Alkio But the value will depend on the previous value but it will only be One value so I want it to be selected automatically so it can go to the next question, not sure if I explain myself.

Then you are probably needing something like… SELECT(TableName[ColumnA],[ColumnB]=[_THISROW].[Column]) or LOOKUP([_THISROW].[Column],TableName,ColumnB,ColumnA)

Top Labels in this Space