I am looking for the best way to check if a dataview has rows. In this case, within an event, I want to see if the QuoteDtl dataview has any lines before executing a function.
Thank you.
I am looking for the best way to check if a dataview has rows. In this case, within an event, I want to see if the QuoteDtl dataview has any lines before executing a function.
Thank you.
In your event, you should be able to add a condition with an expression:
%QuoteDtl.hasRow%
If TRUE… do something
If FALSE… do something else
Thanks David,
Just what I needed.