Is this code correct? It currently hides the footer when the count exceeds 3. I tried using <= 5
, but it still hides the output when the count is 3
Is this code correct? It currently hides the footer when the count exceeds 3. I tried using <= 5
, but it still hides the output when the count is 3
Hi
Have you tried just one IIF() statement?
i.e. IIF(CountuARTran.InventoryID] < 5, True, False)
If you look closely at your second IIF statement, you are saying that if there are less than 5, you should hide the footer.
It is not too clear what you are trying to achieve too, could you please clarify?
Hope this helps.
Aleks
Ignore my statement about the second IIF, i read the symbol wrong!
You will want to use something like this:
IIF(Count[ARTran.InventoryID] >= 5, True, False)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.