Hi @DBTS7 ,
Ok, so we need some more information to continue troubleshooting;
- What is your data source TempFilter? (SPO List, Dataverse, SQL, Collection)
- If it's a collection, does it have data in it?
- Can you manually perform a LookUp() using this condition and get a result from the source? (i.e. use a text label and place in a static conditions - in other words do NOT reference ThisItem in the formula)
Like using Today(), not referencing ThisItem is not the solution, it's a way to find the problem. Do it, then let us know what happens so we can continue troubleshooting.
Other things to check;
- What is the data TYPE of Uuid in the source? (Text, Number, GUID?)
- Is ThisItem.FilterId of the same type? Just because they both look the same does not mean they are of the same type.
- Is this LookUp() condition the correct condition to be testing for? (what other condition would you replace it with?)
Warning - If Uuid is of a GUID type in your source and you've collected it to TempFilter, then you may want to convert your FilterId to a GUID as well for comparative testing, because it's probably being converted to a string on the way into your collection.
The condition If(GUID = String) will always return false, meaning your LookUp will return blank. If this is the case, try this;
LookUp(
TempFilter,
Uuid=GUID(ThisItem.FilterId),
CreatedOn
)
Alternatively, think of some other field you can use to uniquely identify the record.
Let me know how it goes, and if you're still stuck please do answer the questions above.
RT