Hi All
I am having two functions
GetCurrentField(Grp1) - This gives value as 'subcountry'
GetPossibleCount(subcountry) - This gives value as '35'
However when i write GetPossibleCount(GetCurrentField(Grp1)) I do not get any value. Please provide your valuable suggestions.
Regards
Adil
Hi Adil,
GetPossibleCount($(=GetCurrentField(Grp1)))
Hi Tamil,
Thanks for your response and time.
If you can explain the reason that would be of great help.
Regards
Adil
Hi Adil,
You are welcome. I believe "GetCurrentField" function is not evaluated inside the "GetPossibleCount" function. So we are using dollar sign expansion to evaluate "GetCurrentField" and using the result as a field name inside the "GetPossibleCount" Function.
I just put these expressions in a straight table to understand this better.
ok thanks!