Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello,
I hope you can help me out. I've been searching and trying to find a way.
I have a column with "year" and one with "week number" - I need a column with the first day of week.
It seems so simple, but it bugs my mind.
Hope you can help,
Sandi
Solved! Go to Solution.
It only accepts the caculated measures. I did check for data type to be Date/Time
@SJHA , Try Monday Week start
Week to Date = var _st = date([year],1,1)
var _week = [Weeknumber]
Return _st+((_week-1)*7) -WEEKDAY(_st,2)+1
//Sunday Week Start
Week to Date = var _st = date([year],1,1)
var _week = [Weeknumber]
Return _st+((_week-1)*7) -WEEKDAY(_st,1)+1
refer : https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
@amitchandak Hello again
I ran into this problem:
The week 53 is causing a challenge. Do you know a quick fix to this logic?
@amitchandak I changed the data type to whole numbers and somehow that works with the code you provided.
Thank you so much! You've made my day, if not a whole week!
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |