Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a pivot table with a single expression. The requirement is to allow the user to filter the data in the pivot table based on two variables.
Variable 1: will be less than or greater than ( > or <)
Variable2: some integer
I would like to be able to have the user select < or > and enter a value and have the pivot table only show lines that fall within the variable range.
My current expression doesn't respond at all. =if(sum( Planned) - sum( Actual) & $(Variable1) & $(Variable2),
sum(Planned) - sum(Actual),null())
Any guidance would be appreciated.
Try removing the & signs like this :
=if(sum(Planned) - sum( Actual) $(Variable1) $(Variable2),sum(Planned) - sum(Actual),null())
Try removing the & signs like this :
=if(sum(Planned) - sum( Actual) $(Variable1) $(Variable2),sum(Planned) - sum(Actual),null())
That worked! Thanks. How come when I use that expression the syntax checker doesn't accept it but it still works?