Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guru,
currently I am using
=GetSelectedCount([Field1]) > 0 or GetSelectedCount([Field2]) > 0 ....................................................GetSelectedCount([Field10]) > 0
to blank off the table in the QS hub, until when user do a QS global search or click on the filter fields
Is there a statement to indicate all fields in the master items
thank you
Hi Tresesco,
I try
if( Len(GetCurrentSelections())>0, 1, 0) and it works, thank you so much
You could try like:
if( Len(GetCurrentSelections())>0, ....
Hi Tresesco,
I try
if( Len(GetCurrentSelections())>0, 1, 0) and it works, thank you so much