Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
If I click the selection 'Store A', the Text Value in StoreB and StoreC is changed to null.
I would like to ignore the selection (Store) in my expression ,
the existing formula
=firstsortedvalue(TextValue,-(aggr(sum(Amount),Store,TextValue)))
Store | Text Value |
---|---|
A | hjk |
B | oiu |
C | qwe |
thank you
let's try as below:
=firstsortedvalue( {< Store= >} TextValue,-(aggr(sum( {< Store= >} Amount),Store,TextValue)))
let's try as below:
=firstsortedvalue( {< Store= >} TextValue,-(aggr(sum( {< Store= >} Amount),Store,TextValue)))
Hi,
try this:
=firstsortedvalue(TextValue,-(aggr(sum({<Store>}Amount),Store,TextValue)))
it works
thank you
please close the thread marking the answer as correct to help other people.