Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to convert a date year week format of a field
existin format is 2016030 -> yearweek
required as 201630
please help
Maybe like this..
=Dual(Left(2016030,4)&right(2016030,2),
Left(2016030,4)&right(2016030,2))
=WeekName(Today())
If you have a date field, this should work
=Date(WeekStart(yourdatefield),'YYYYWW')
How do you create your yearweeek field?
This field is coming from SAP and iam reading it in qv
Please try
=replace(WeekName(MakeWeekDate(left(yourfield,4),Right(yourfield,2))),'/','')