0
Filter

I need to filter the records in the Tracks table in a View based on the selection of the Multiple Choice Dynamic 'Select Album' field.
3 replies
-
You can use the record() command.
let selectedAlbum := record(Album,number('Select Albums');
Of course make sure the table name is the appropriate one.
Then you can use the variable in your View formula
-
let s := for i in numbers('Select Albums') do record(Albums,i).'Composer Name' end; select Albums where contains(s, 'Composer Name')
Content aside
- yesterdayLast active
- 3Replies
- 37Views
-
3
Following