Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have the following data below
I looking to create a matrix and dynamiclly assign forecast Month based on Support ready date
so for example Work Item 1230 forecast month 1 = july, forecast month 2 = Aug and so on
For Work Item 1456 Forcast month would =Sep
example on matrix trying to create
Solved! Go to Solution.
NewMonth =
var index = YEAR([Ready Date])*12+MONTH([Ready Date])+[ForcastMonth]-2
return int(index/12)&"-"&FORMAT(MOD(index,12)+1,"00")
NewMonth =
var index = YEAR([Ready Date])*12+MONTH([Ready Date])+[ForcastMonth]-2
return int(index/12)&"-"&FORMAT(MOD(index,12)+1,"00")
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |