Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 |
---|---|
15 | |
13 | |
12 | |
10 | |
10 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
10 |