Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi community !
I found several topics on the subject but nothing to solve my problem...
In my app i wanted to compare two fields as a condition by using Set analysis :
rangesum( above( Count({$<
DateType={'CompanyApproved'},
{[Authorized_by_company]=<[Approved_by_company]}
>} ID)
but it's not working ...
Do you have an idea ?
Thank you,
Victor
I would just to this
If([Authorized_by_company] <= [Approved_by_company], 1, 0) as comparisonFlag
and then this:
Count({$<DateType = {'CompanyApproved'}, comparisonFlag = {1}>} ID)
May be this
Count({$<DateType = {'CompanyApproved'}, ID = {"=[Authorized_by_company]=<[Approved_by_company]"}>} ID)
Thank you for your answer Sunny,
Unfo it's still not working...
I think i have to load another field in the script like
if( [Authorized_by_company]<=[Approved_by_company],'<=','') as comparison
and then
Count({$<DateType = {'CompanyApproved'}, Comparison={'<='}}>} ID) ... is the wording correct?
I would just to this
If([Authorized_by_company] <= [Approved_by_company], 1, 0) as comparisonFlag
and then this:
Count({$<DateType = {'CompanyApproved'}, comparisonFlag = {1}>} ID)