Hi @ahall ,
The issue you have is that the ‘unsubscribedNumber’ column have no value in the joined table, right?
What is the type of ‘date’ column, DateTime?
I have made a test on my side, and find the issue may be due to the ‘date’ column, the date type column is unable to match successfully in LookUp.
Here is two workarounds.
1. Use text or value function to convert date to text/value, so that they can join successfully. But delegation should notice.
You can refer to the formula:
ClearCollect(myCollection,AddColumns('[dbo].[Subscription Table]',"unsubscribedNumber",LookUp('[dbo].[Unsub Table]',Text(date,DateTimeFormat.ShortDate)=Text('[dbo].[Subscription Table]'[@date],DateTimeFormat.ShortDate),unsubscribedNumber)))
2. Or you can add another index column (Text/Value type), and use it to match in LookUp instead of ‘data’ column, so that there is no need to worry about the delegation warning.
Best regards,
Sik