Using contact property as filter query in the hubdb_table_rows() function
Hi,
I have a table (id = 5461277), two columns in the table are - 'trip_code' and 'trip_name'
I have a contact property named 'drdestination1' which is equal to 'trip_code' value in the table above.
I want to dynamically display 'trip_name' column value for every user with unique 'drdestination1' contact property. I'm not getting any value for 'trip_name' as the filter query passed is not correct. What's the right way to achieve this?
This is the code I'm using -
{% set abc = contact.drdestination1%} Contact Property is: {{abc}} {% for row in hubdb_table_rows(5461277, "trip_code=contact.drdestination1") %} {{row.trip_name}} {% endfor %}
Using contact property as filter query in the hubdb_table_rows() function
Hi, I'm trying to filter hubDB rows based on the HubDB row id (hs_id) with in operator on contact property (recommended_courses) which is coma separate text field of ids. To get multiple rows. The constant values in the IN operator work but when contact.recommended_courses it doesn't fetch any data from the hubDB table.
Here's my module code. The module is used in the marketing email.