Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to show a textfield if nothing in any field is selected.
Is it possible to write something like "=isnull(GetFieldSelections(*))"?
At the moment i am using:
=(isnull(GetFieldSelections(Objektgruppe)) and isnull(GetFieldSelections(Gruppe)) and isnull(GetFieldSelections(Gruppentyp)) and isnull(GetFieldSelections(ZR_Jahr)) and isnull(GetFieldSelections(ZR_Quartal)))
I have to put every field into this statement that a user can select and that is quite uncomfortable.
Perhaps you know a better way?
Martin
Hi Martin,
You can use below statement to check nothing in selected in any field:-
ISNULL(GetcurrentSelections())
Please let me know if you have any further query in this regard.
Dhananjay
Hi Martin,
You can use below statement to check nothing in selected in any field:-
ISNULL(GetcurrentSelections())
Please let me know if you have any further query in this regard.
Dhananjay
Hi Dhananjay,
it works !!
That is really a fine solution -> I did not had the idea, that there could be another function to check that.
Many thanks from hamburg in germany!