YES/NO peculiar expression for virtual column

Apper
New Member

Hi guys!

Is there anyone out there who would be able to help me with build expression for next thing.

Iโ€™d like to create a virtual column which would be able to find if there was a specific value in a column of Table_2, check if that value is not older than 365 days, AND
where this condition is true: the value of โ€˜Column_1โ€™ from table where Iโ€™d like to add virtual column(Table_1) is equal to the value of column Column_1โ€™ of Table_2

Thanks guys!

Solved Solved
0 2 237
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Maybe this?

ISNOTBLANK(
  FILTER(
    "Table_2",
    AND(
      ISNOTBLANK([a column]),
      ([a column] = specific-value),
      NOT([a column] < (TODAY() - 365)),
      IF(
        ISBLANK([Column_1]),
        ISBLANK([_THSROW].[Column_1]),
        ([Column_1] = [_THSROW].[Column_1])
      )
    )
  )
)

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

Maybe this?

ISNOTBLANK(
  FILTER(
    "Table_2",
    AND(
      ISNOTBLANK([a column]),
      ([a column] = specific-value),
      NOT([a column] < (TODAY() - 365)),
      IF(
        ISBLANK([Column_1]),
        ISBLANK([_THSROW].[Column_1]),
        ([Column_1] = [_THSROW].[Column_1])
      )
    )
  )
)

Worked like magic! Thank you very much!!!

Top Labels in this Space