Forum Discussion
AyanMazumder
6 years agoNew Member
Need help in DAX Code for CALCULATED Column
Hello Guru's, I have a table below - I am planning to write DAX code for a CALCULATED Column which should give the following output mentioned in the table below. Can you please help me...
- 6 years ago
Revised_WBS = var v=Table[WBS] var i=Table[Index] var c=COUNTROWS(FILTER(Table,Table[Index]<i && Table[WBS]=v)) return v & REPT("0",c)
lbendlin
6 years agoSuper User
Revised_WBS =
var v=Table[WBS]
var i=Table[Index]
var c=COUNTROWS(FILTER(Table,Table[Index]<i && Table[WBS]=v))
return v & REPT("0",c)AyanMazumder
6 years agoNew Member
Many thanks.....