Hi All,
I have a requirement to lookup for a row value of a column (column name is : "IRB Staff/Study Team" and Table name is "Append1") based on rank measure and populate the next row value in a new column .
To achieve this,
I am creating a rank measure in my report as below using DAX:
1. Create new measure
Rank_Var = RANKX(
ALLSELECTED(Append1),
CALCULATE(SUM(Append1[Index]))
,,ASC
)
Now, I need to use this measure which I created(Rank_Var) for a lookupvalue for which I created a column
1. Create new column
Lookup_Var=
LOOKUPVALUE(Append1[IRB Staff/Study Team], need to use the measure, need to use the measure +1)
But I get Circular dependency issue when creating this column.
Can someone please help me fix this?
Thank you
Poojitha