Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi there,
how do I make filter pane show only two values from the dimension? using formula:
=if(Dimension = 'Value1' or Dimension = 'Value2', Dimension)
This is not working 😞
Any ideas?
Thanks!
Your expression looks OK.
Try
If(match(Dimension,'Value1','Value2'), Dimension, null())
Or try
Aggr(Only({<Dimension={'Value1','Value2'}>}Dimension),Dimension)
Your expression looks OK.
Try
If(match(Dimension,'Value1','Value2'), Dimension, null())
Or try
Aggr(Only({<Dimension={'Value1','Value2'}>}Dimension),Dimension)
Hi Vegar, both expressions worked nicely!
Thansk a million for your support here!