Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have the attached Document, I only want the sheet "Show Me" to appear if the Field "_Area Flag" has a value greater than zero when a Selection is made, if the values is equal to zero I do not want this sheet to appear.
Thanks
Doesn't work I'm afraid
Doesn't work I'm afraid
what is missing on this app ?
what do you mean doesn't work??
can explain little bit more?
Regards,
If you look at the attached, it is selecting NewTableName = "dbo.BSsignedUserAliBS" the Text box is showing that there is no _AreaFlag greater than 0 but the Sheet "Show Me" appears, it should only appearing when that value in the Text Box is greater than 0.
May be this
=Len(Trim(GetCurrentSelections())) > 0 and _AreaFlag > 0
You can use the same (as in textbox) expression as the conditional expression of the sheet.
=sum( {$<[_AreaFlag]={'1'}>} [_AreaFlag])
ok,
this should work for you
=if(wildmatch(GetCurrentSelections(),'*'),1,0) and Concat(DISTINCT _AreaFlag)=1
PFA
May be try
=(Index(GetCurrentSelections(','),'_AreaFlag: 1')>0 AND Index(GetCurrentSelections(','),'_AreaFlag: 1')<Len(GetCurrentSelections(',')))
did you try my suggestion???
where are your putting those expresssion??
it should be in show me sheet > property > general > conditional >
=if(sum(DISTINCT _AreaFlag)>0,1,0)
Regards