Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
venkatasuresh_g
Helper III
Helper III

How to convert this to Date

Hi,

 

 How can I convert this to a Date "18-WK01" , which is 2018-Week01

 

Thanks for your help

 

Suresh Guddanti

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @venkatasuresh_g 

if you need to show Mondays of each week try this column

Column = 
var _startYear= DATE(2000 + VALUE(LEFT([Date],2)),1,1)
var _startDay = IF(WEEKDAY(_startYear,1) = 2, _startYear + 7*(VALUE(RIGHT([Date],2)) - 1), _startYear + 7*VALUE(RIGHT([Date],2)))
RETURN
_startDay - WEEKDAY(_startDay,2) +1

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

2 REPLIES 2
az38
Community Champion
Community Champion

Hi @venkatasuresh_g 

if you need to show Mondays of each week try this column

Column = 
var _startYear= DATE(2000 + VALUE(LEFT([Date],2)),1,1)
var _startDay = IF(WEEKDAY(_startYear,1) = 2, _startYear + 7*(VALUE(RIGHT([Date],2)) - 1), _startYear + 7*VALUE(RIGHT([Date],2)))
RETURN
_startDay - WEEKDAY(_startDay,2) +1

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Thank you so much 

 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors