Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have created the following expression in a textbox:
=max({<Year= {"$(=max({1} Year))"}>Left([ YearMonth],2))
Result:
Error: '}' expected
I already been looking around and I cant spot where the problem is...
Can you give me a hint please!
Thank you!
=max({<Year= {"$(=max({1} Year))"}>} Left([ YearMonth],2))
=max({<Year= {"$(=max({1} Year))"}> here need } Left([ YearMonth],2))
=max({<Year= {"$(=max({1} Year))"}>} Left([ YearMonth],2))
=max({<Year= {"$(=max({1} Year))"}> here need } Left([ YearMonth],2))
here
=max({<Year= {"$(=max({1} Year))"}>}Left([ YearMonth],2))
Can you please explain, What do you want to Achieve.
try this
max({<Year= {"$(=max({1} Year))"}>}Left([ YearMonth],2))
=max({<Year= {"$(=max({1} Year))"}>Left([ YearMonth],2))
Why do you have a space within the [] for YearMonth field ??
First of all remove the space from [ YearMonth]
Secondly, remove {1}.
Try expression like:
=max({<Year= {"$(=max(Year))"}>}Left(YearMonth,2))
Hope it satisfies your requirement.
=max({<Year= {"$(=max({1} Year))"}> } Left([ YearMonth],2))
Rodrigo,
Thank you for that, that was what was missing!
Thanks all for you help, really appreciate!