Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys, i've a littl bit problem(i hope)
I've got one expression and i need to exclude every filters i've in my project,but i've to mantain only one of them
i know i can use expression looks like sum( total <Filter1,Filter2,...,...,...FilterN> Sales ) by exluding the filter i don't need.
but i've a lot of filter to in my project and it should be better i can specify only this one to be used on my formula.
In substance i'n searching for an expression like this, but that it works on the contrary....
thx a lot.
bye.
you can use a subset expression; sum( {1} Sales) will disregard selections and calculate the sum over your dimensions.
thx, bu ti need to disregard all selections exept only one.....
sum({$<Field1= , Field2= }>} Sales) will disregard selections for Field1 and Field2. You can add all the fields that need to be disregarded.
ok, but i've a lot of field to add, meanwhile i want to make the contrary, add the only one filter to be considered
HI
Try like this
=sum({1<FieldToKeep=P(FieldToKeep)>}Sales)
Hope that helps
Maybe something like sum({1<Field1=P()>} Sales). If I understand it correctly this would disregard all selections except the selections for Field1
tried, but not works fine....it consider other selections too, seem to be not works 1 value to have totals...