Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have timestamps like this:
2013-01
2012-12
2012-11
2012-10
..........
2012-01
2011-12
2011-11
2011-10
.........
2011-01
2010-12
2010-11
2010-10
.......
2010-01
2009-12
etc.
I just want to show
2012-12 as 2012
2011-12 as 2011
2010-12 as 2010
how could i do this without complicating it?
thanks a lot, and sorry for disturbing,
felipe
Try
SubField(your_time_stamp_field,'-',1)
it worked, thanks
felipe