Forum Discussion
BhavyaM
3 years agoHelper V
Dynamic datetime parameter using table
I have two tables, Maxdate - which is having single datetime column with one row and Userdate with single datetime column with multiple rows. I have to apply maxdate table as a dynamic parameter ...
- 3 years ago
MaxDate is a table but you want the value from that table.
Try replacing
[SystemModstamp] <= MaxDate
with
[SystemModstamp] <= MaxDate[MaxDateTime]{0}
This takes the first (index 0) row of the MaxDateTime column of the table.
Syndicate_Admin
3 years agoAdministrator
MaxDate is a table but you want the value from that table.
Try replacing
[SystemModstamp] <= MaxDate
with
[SystemModstamp] <= MaxDate[MaxDateTime]{0}
This takes the first (index 0) row of the MaxDateTime column of the table.
- BhavyaM3 years agoHelper V
thank you so much for the help