Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a standalone list box that has the last four payperiods and need to select the same 4 payperiods in another list box that has a whole big list of pay periods because I need to restrict the dataset that I am displaying in one pivot in my application.
I am using this ='('&Concat(LastFourPayPeriods.PayPeriodEndDT,'|')&')' to select in field on activate but it will not work, the output looks ok but it just will not select the values.
Maybe this works:
='('&Concat(distinct chr(34) & LastFourPayPeriods.PayPeriodEndDT & chr(34),'|')&')'
If not, you'll have to post more information. For example a sample document that demonstrates the problem.
Hi,
Try with this:
='("' & Concat(LastFourPayPeriods.PayPeriodEndDT,'"|"') & '")'
Maybe this works:
='('&Concat(distinct chr(34) & LastFourPayPeriods.PayPeriodEndDT & chr(34),'|')&')'
If not, you'll have to post more information. For example a sample document that demonstrates the problem.
Thanks this worked for me 🙂