I have the following If Statement that fails.
If(
CountRows(
Filter(
colPelletRecords,
Facility = SelectedFacility.Text,
Line = SelectedLine.Text
)
) = 0,
Notify("What the heck"),//Other stuff)
The True part of the statement is fired every time even though the CountRows() = 1. I put the CountRows part as the Text parameter of a label and it's showing 1.
Why does the False part not get triggered in the IF statement?
Thanks!