Forum Discussion

ReadTheIron's avatar
ReadTheIron
Icon for Helper III rankHelper III
4 years ago
Solved

Creating text column with values from two related tables

I'm trying to create a text column displaying information from two related tables: Asset List AssetFull Latest Failure Asset1 1/2/2021 Asset2 3/6/2021 Asset3 4/10/2021  and ...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi  ReadTheIron ,

    Here are the steps you can follow:

    1. Create calculated column.

    Date =
    VAR _1=CALCULATE(MAX('Daily Reports'[Asset ID]),FILTER(ALL('Daily Reports'),'Daily Reports'[AssetFull]=EARLIER('Asset List'[AssetFull])))
    return
    _1&":"&[Latest Failure]

    2. Result:

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly