Discussion Board for collaboration related to QlikView App Development.
Hi all,
I'm wanting to show all units apart from those that have been bought from buyer that is currently selected.
My expression although it is wrong is,
if(BUYER.B_NO = GetCurrentSelections , '', BRANCH_NAME)
Could anyone give me a hand please?
Thanks
Gareth
Hi,
PFA the demo app, you can change the condition as required.
E(), its basically exclusion.
Regards,
Navdeep
I am guessing you want to use this within some kind of expression, if that's right try this:
{<BUYER.B_NO = e(BUYER.B_NO)>} or
{<BUYER.B_NO -= p(BUYER.B_NO)>}
Considering Buyer is the Dimension
Count({<units = e(units)>}DISTINCT units)
Try with
if(BUYER.B_NO = GetFieldSelections(BUYER.B_NO),null(),BRANCH_NAME)
something like this
count({<BUYER.B_NO =e({<BUYER.B_NO={"=getfieldselections(BUYER.B_NO)"}>})>}BRANCH)
Hi,
PFA the demo app, you can change the condition as required.
E(), its basically exclusion.
Regards,
Navdeep
Thank you for your help everyone!
I have also given the same expression !
Excellent Manish, well done