Forum Discussion

sebastianqc's avatar
sebastianqc
Icon for Helper I rankHelper I
6 years ago
Solved

Problem with repeat columns from thursday to wednesday

Hello , i have a problem: Data 452.66 is not repeated like the previous data     I need the data to be repeated from Thursday to Wednesday and in the field of the first image it takes the value o...
  • Anonymous's avatar
    Anonymous
    6 years ago

    HI sebastianqc,

    So you mean to use the next value to replace the current one? If this is a case, you can modify the formula to use 'next value' to replace 'previous':

    Formatted =
    VAR _prev =
        LOOKUPVALUE ( T2[Value], T2[Index], [Index] - 1 )
    VAR _next =
        LOOKUPVALUE ( T2[Value], T2[Index], [Index] + 1 )
    VAR _status =
        IF ( [Value] = _prev || [Value] = _next, 1, 0 )
    RETURN
        IF ( _status <> 1, _next , [Value] )

    Regards,

    Xiaoxin Sheng