I’m trying to create a search chip on a dashboard to filter my BAQ based on a list of ‘Job + Assembly’ that a user selects. However, the search chip turns gray and unclickable when I preview the dashboard.
Emm… I’ve seen some posts about filtering the BAQ based on the value in the search chip. So, I’ll need to call a function to convert the values in my DataView into a format that SQL can read. After that, I can go into the BAQ options to set the filter.
The question is, how do I combine both values coming from the search chip into one? For example, JobNum and AssemblySeq are listed separately, and I’d like them to be combined into something like ‘46901-100’—essentially, JobNum + AssemblySeq.
Do I need to create another DataView and use a RowAdd event to update it? Or I just need to create a single field in my TransView to include both JobNum and Assembly?