sorry, the revised part of the code did not work. it get error and underline
Filter(
TableMasterDVR1,
cr333_serialno = cr333_serial
)
it underline red for cr333_serialNo
====================================================
Regarding the Columns name, table name, collection name and data, I re-checked all, its all ok, No mistake.
To track mistake i started testing as below :
Filter(
TableMasterDVR1,
Text(SerialNo) = Text(cr333_serial)
)
Result : long time taken but not reading the data from TableMasterDVR1
==================================
Tested again
Filter(
TableMasterDVR1,
Value(SerialNo) = Value(cr333_serial)
)
Result : Here found error popup that it cannot convert XLL1793112, which is one the value of the record in SerialNo.
I am aware that my serial and SerialNo Data type is text in the dataverse table
================================================
Therefore : Its proves that the issue is the comparison of:
SerialNo = cr333_serial
IF this will work, then issue will be resolved.
Requesting you to advise, if any other way of compare inbetween this two field
So that I can give the try.
Rest all the code is ok, no error, only the comparison issue remains.