Comparing field values

Hi,
Is there any way that I can compare the value of a field withanother field value ?
basically i m trying to use the depend on as follows:
eval:doc.transaction_date<‘validity’
(‘validity’ is actually the fieldname of the value to be compared)
Thx

Hi @Manu,

You can compare the fields in eval.
try: eval:doc.transaction_date < doc.validity.

Thanks,
Makarand Bauskar

1 Like

Works perfeclty
Thanks for your help
Manu