Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am trying to find the set analysis that will only produce a value when a date field is greater to or equal to a variable I have set. I know how to make it equal to a variable however that is the extend of my knowledge. Here is what I have so far
Only({$<DateField={'$(variable)'}>} Name)
Is there a way to make the set only look at values greater to or equal to the variable.
Thank You!
Try this:
Only({$<DateField={">=$(=$(variable))"}>} Name)
Hi,
Try like this,
=Concat({<DateField = {'>=$(variable)'}>}Distinct Name,',')
If you use only here, you will get null value, because, if only one value is occur only produce result..
Hope it helps
Thanks! That solution worked perfect for me.