Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I would like to put a Calculation Condition on all straight tables if the user has not selected at least one field because I don't want people to extract a Details chart with all selections removed.
Is there an easy formula to check if there is at least one selection active on any field ?
Or the negative version : check if no selections are active ?
Thanks
Maybe
=Len(GetCurrentSelections())>0
Thanks for your example
I've tried with =if(isnull(GetCurrentSelections()),0,1) and it works too
It was not as hard as i thought ![]()
Thanks