HI @SumanKoduri ,
Could you please share a bit more about your scenario?
Do you want to filter your 2 columns based on 2 Text Inputs at same time within your Data Table? Or just filter your data table records based on the typed search text within the Two Text Inputs?
Based on the needs that you mentioned, I think the Filter function could achieve your needs. I have made a test on my side, please consider take a try with the following workaround:
Set the Items property of the Data Table to following:
Filter(
'[GLOBUS_APP].[V7110_CASE_REQ_FAM_DETAILS]',
If(
IsBlank(TextInput2_1.Text) || TextInput2_1.Text = "",
true,
StartsWith(C207_SET_ID, TextInput2_1.Text)
),
If(
IsBlank(TextInput2.Text) || TextInput2.Text = "",
true,
StartsWith(FIELD_SALES_NAME, TextInput2.Text)
)
)
Note: The above filter formula would filter your Data Table records only when you type search text within any one or both of the Two Input Boxes, otherwise, it would display all records from your data source within the Data Table.
Please take a try with above solution, check if the issue is solved.
Best regards,