I have the following code located on a button for the onSelect function.
If(ddFPCONStandard.Selected.Value = "DoD", ClearCollect(
colFilterLevel,
Filter(
'DoD FPCON Measures',
'Measure Type'.Value = ddFPCONStandard.Selected.Value && Level.Value = ddFPCONStandard_1.Selected.Value
)),ClearCollect(colFilterLevel,Filter(
'DoD FPCON Measures',
'Measure Type'.Value = ddFPCONStandard.Selected.Value && Level.Value = ddFPCONStandard_1.Selected.Value
&& Group.Value = ddFPCONStandard_3.Selected)));
Navigate(screenFPCONLevel)
Everything works fine until the last section with Group.Value = ddFPCONStandard_3.Selected)));. This is where I get the error and cant compare table, record. How would I go about changing one of these to match?