hi everyone,
i have a table with items as:
Filter( Tracks, Retailer = 'Retailer (Tracks)'.Amazon )
I also have a text box with the total number dependent on some filters via dropdowns.
Text(Sum(Filter(Tracks,And(Or(IsBlank(ComboBox1_4.SelectedItems),IsEmpty(ComboBox1_4.SelectedItems),Market in ComboBox1_4.SelectedItems),Or(IsBlank(ComboBox1_10.SelectedItems),IsEmpty(ComboBox1_10.SelectedItems),'Pitch Status' in ComboBox1_10.SelectedItems),Or(IsBlank(ComboBox1_9.SelectedItems),IsEmpty(ComboBox1_9.SelectedItems),'Campaign ' in ComboBox1_9.SelectedItems))),'Trade Q2'),"0","en-GB")
How do i merge these together so that the total is only amazon, dependent on the filters?
Thanks so much!