Using an expression to check a dataset contains data

Is it possible using the expression language to check whether a dataset contains any values? Specifically, I want to only enable a button if a dataset actually contains data.

Al

You should just be able to bind the enabled property of the button to something like:

len({Path.To.My.Dataset}) > 0
1 Like

Thanks Carl, that works splendidly.

Al