Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all, I have this table with a dimension called 'Ragione Sociale' and I want to create a button to filter and exclude values starting with '***', but * is a wildcard; how can this be achieved?
Hi, instead of wildcard maybe use left() or index(), like:
if(left([Regione Sociale], 3)='***' , 1,0)...
Hi, instead of wildcard maybe use left() or index(), like:
if(left([Regione Sociale], 3)='***' , 1,0)...