Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
i have a table where i use alternate states to compare some data.
as a title for the first expression i have this:
= ( 'Montant encaissé HT ' & maand &' '& jaar)
for the title of the second expression using alternate state i want it also to be named dynamically.
it tried this but it doesn't work.
= ( {Period2} 'Montant encaissé HT ' & maand &' '& jaar)
What should i do instead?
thanx
chris
= 'Montant encaissé HT ' & only({Period2} maand) &' '& only({Period2} jaar)
= 'Montant encaissé HT ' & only({Period2} maand) &' '& only({Period2} jaar)
perfect! thanx!!!!
chris